I am looking for a way to name a sheet in an Excel Workbook without having to identify the sheet as "Sheet 1" or "Sheet 2" etc...
This job will be on a loop that is naming multiple sheets using values within cells.
Is is possible to name a worksheet just by identifying it as "ActiveWorkSheet"??
Right now the only code I can find is this:
Thanks,
Belstoy
This job will be on a loop that is naming multiple sheets using values within cells.
Is is possible to name a worksheet just by identifying it as "ActiveWorkSheet"??
Right now the only code I can find is this:
Code:
Sheets("sheet1").name = Range("a1").value
Thanks,
Belstoy