Pinaceous
Well-known Member
- Joined
- Jun 11, 2014
- Messages
- 1,124
- Office Version
- 365
- Platform
- Windows
Hi All,
I'm working with:
Where I'm trying to select the worksheet then change its name. I have 24 tabs where this code is providing a sample of the macro I'm using above.
Does anyone know how to combine these particular VBA statements?
I've tried experimenting on this method:
But this is not working well for me, when I am combining these steps in this way.
Any ideas??
Thanks,
Pinaceous
I'm working with:
Code:
Sheets("First SEP REPORT").Select
Sheets("First SEP REPORT").Name = "Second SEP REPORT"
Where I'm trying to select the worksheet then change its name. I have 24 tabs where this code is providing a sample of the macro I'm using above.
Does anyone know how to combine these particular VBA statements?
I've tried experimenting on this method:
Code:
Application.Goto Worksheets("First SEP REPORT").Name = "Second SEP REPORT", True
But this is not working well for me, when I am combining these steps in this way.
Any ideas??
Thanks,
Pinaceous