Is it possible to search tabs in excel?

S

Ste1978

Hi,

I know if you press 'ctrl + F' you can search for a specific word in
spreadsheet, but is there a way to search for a specific word in th
tabs at the bottom? I have a spreadsheet that has 100's of tabs at th
bottom.

Any ideas?

St
 
D

Don Guillett

try
Sub searchpages()
For Each ws In Worksheets
If InStr(UCase(ws.Name), "JOE") > 0 Then ws.Select
Next
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top