Renaming multiple sheets in a workbook
Closed
rev
-
May 19, 2017 at 03:19 AM
vcoolio Posts 1411 Registration date Thursday July 24, 2014 Status Moderator Last seen September 6, 2024 - May 19, 2017 at 08:13 AM
vcoolio Posts 1411 Registration date Thursday July 24, 2014 Status Moderator Last seen September 6, 2024 - May 19, 2017 at 08:13 AM
Related:
- Renaming multiple sheets in a workbook
- Sheets right to left - Guide
- How to make multiple selections in photoshop - Guide
- Allow multiple downloads chrome - Guide
- How to delete multiple files on mac - Guide
- Mark sheet in excel - Guide
1 response
vcoolio
Posts
1411
Registration date
Thursday July 24, 2014
Status
Moderator
Last seen
September 6, 2024
262
May 19, 2017 at 08:13 AM
May 19, 2017 at 08:13 AM
Hello Rev,
Have a look at the following link:-
https://ccm.net/forum/affich-419062-excel-macro-rename-all-worksheets
If you want to add the workbook name, you'll only need to adjust this line:-
For example, if your workbook is named Fred, then alter the line as follows:-
Your worksheet tabs should then look like this:-
"Fred, Sheet1", "Fred, Sheet2" etc......
Cheerio,
vcoolio.
Have a look at the following link:-
https://ccm.net/forum/affich-419062-excel-macro-rename-all-worksheets
If you want to add the workbook name, you'll only need to adjust this line:-
Sheets(iSheetCount).Name = iSheetCount
For example, if your workbook is named Fred, then alter the line as follows:-
Sheets(iSheetCount).Name = "Fred, Sheet" & iSheetCount
Your worksheet tabs should then look like this:-
"Fred, Sheet1", "Fred, Sheet2" etc......
Cheerio,
vcoolio.