Loop through worksheet names

Coldfire46

New Member
Joined
Aug 6, 2015
Messages
17
Hi all,

I'm trying to write some code that loops through the names of the worksheets within a workbook and if the workbook title has the word 'Summary' in it, I want to do something further with the data in that worksheet. Will the following lines of code do that?

Code:
For Each ws In ActiveWorkbook.Worksheets
    If ws.Name Like "Summary*" Then
    'Do something
    End If
    
Next ws
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Hello,

try

Code:
    For Each ws In ActiveWorkbook.Worksheets
        If Left(ws.Name, 7) = "Summary" Then
            'Do something
        End If
    Next ws

will your sheet names always begin with Summary or can there be text before the word summary, if so, you will need different code.

Code:
    For Each ws In ActiveWorkbook.Worksheets
        If ws.Name <> Replace(ws.Name, "Summary", "") Then
             'Do something
        End If
    Next ws
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top