alexaronson
Active Member
- Joined
- Sep 30, 2005
- Messages
- 314
Hello and thanks for looking at my question.
I have a master work sheet with code that defines the workbook. For instance, I have
My master workbook now needs to have various versions made so that I now have "Blah1.xlsm", "Blah2.xlsm", etc.
How can I run a macro that would change all the macro's within "Blah1.xlsm" so that Set masterWB = Workbooks("BLAH.xlsm") now = "Blah1.xlsm"
Thanks
I have a master work sheet with code that defines the workbook. For instance, I have
Code:
Dim masterWB as Workbook
Set masterWB = Workbooks("BLAH.xlsm")
My master workbook now needs to have various versions made so that I now have "Blah1.xlsm", "Blah2.xlsm", etc.
How can I run a macro that would change all the macro's within "Blah1.xlsm" so that Set masterWB = Workbooks("BLAH.xlsm") now = "Blah1.xlsm"
Thanks