Hello. How can I run this code for all open files?
![]()
Sub nametab() Dim s As String Dim ss As String s = ActiveWorkbook.Name ss = Left(s, Len(s) - 4) Sheets(1).Name = ss End Sub
Hello. How can I run this code for all open files?
![]()
Sub nametab() Dim s As String Dim ss As String s = ActiveWorkbook.Name ss = Left(s, Len(s) - 4) Sheets(1).Name = ss End Sub
Hello ammartino44,
Can you explain more about what you are doing with this code?
Sincerely,
Leith Ross
Remember To Do the Following....
1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.2. Thank those who have helped you by clicking the Starbelow the post.
3. Please mark your post [SOLVED] if it has been answered satisfactorily.
Old Scottish Proverb...
Luathaid gu deanamh maille! (Rushing causes delays!)
Try either one of these.
With the 2nd one, it doesn't matter how many characters the extension has.
![]()
Sub Name_Tab() Dim s As String, ss As String, j As Long For j = 1 To Workbooks.Count If Workbooks(j).Name <> "PERSONAL.XLSB" Then If Len(Workbooks(j).Name) > 31 Then MsgBox Workbooks(j).Name & " has too many characters." & vbLf & _ "Only 31 characters are allowed for a sheet name.": Exit Sub With Workbooks(j) s = .Name ss = Left(s, Len(s) - 4) .Sheets(1).Name = ss End With End If Next j End Sub
![]()
Sub Name_Tab() Dim j As Long For j = 1 To Workbooks.Count If Workbooks(j).Name <> "PERSONAL.XLSB" Then If Len(Workbooks(j).Name) > 31 Then MsgBox Workbooks(j).Name & " has too many characters." & vbLf & _ "Only 31 characters are allowed for a sheet name.": Exit Sub With Workbooks(j) .Sheets(1).Name = Trim(Split(ActiveWorkbook.Name, ".")(0)) End With End If Next j End Sub
@jolivanes. If you have two "if's" don't you need two "end ifs"?
You don't need an "end if" for a one liner. I think one of his if statements is a one liner.
One way of finding out of course would be to try it out but, like John mentioned, a one liner does not need the "End If".
Thanks for explaining this John.
Welcome, no problem at all.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks