Find active workbooks name containing strings and activate

dado6612

Well-known Member
Joined
Dec 4, 2009
Messages
591
Hi all, I found I have no other way of doing this than to have a code in third workbook manipulating 2 other workbooks. This is where I'm stuck, little help would be appriciated
I need the code to find active workbook containing "name1" as part of its name, then activate it, run some code, then find second active workbook containing "name2" as part of its name, then activate it, run rest of the code.
Possible? Thanks
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Sure. Something like this gives you a method:

Code:
For Each wb In Workbooks
    Select Case True
        Case InStr(LCase(wb.Name), "name1") > 0
            MsgBox wb.Name & " contains name1"
        Case InStr(LCase(wb.Name), "name2") > 0
            MsgBox wb.Name & " contains name2"
    End Select
Next
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,694
Members
448,979
Latest member
DET4492

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