Hi,
I have this macro that works fine; it copies the date from a cell in that sheet to the tab name.
How can I modify it so it can change the other 11 tabs so I have a full year of monthly tabs in sequence?
Thanks
I have this macro that works fine; it copies the date from a cell in that sheet to the tab name.
Code:
[COLOR=#000000][FONT=Menlo]Sub myTabName()[/FONT][/COLOR] ActiveSheet.Name = ActiveSheet.Range("A1") [COLOR=#000000][FONT=Menlo]End Sub[/FONT][/COLOR]
Thanks