Greetings,
The following macro renames the active sheet in a workbook to what is in cell A1 of that active sheet. I need this macro to work on each sheet in my workbook.
Dim MyName
MyName = ActiveSheet.Range("A1").Value
ActiveSheet.Name = MyName
Any help is greatly appreciated.
Thanks
The following macro renames the active sheet in a workbook to what is in cell A1 of that active sheet. I need this macro to work on each sheet in my workbook.
Dim MyName
MyName = ActiveSheet.Range("A1").Value
ActiveSheet.Name = MyName
Any help is greatly appreciated.
Thanks