Thread
:
how do i create a macro to rename worksheets in excel?
View Single Post
#
2
Pank Mehta
Posts: n/a
I have used the following previously:-
Sub Rename()
Sheets("old name").Select
Sheets("old name").Name = "new name"
End Sub
Hope this helps
"Waki" wrote:
I have a list of loan numbers that I want to use to rename worksheet tabs,
any way to do that?
Reply With Quote