+ Reply to Thread
Results 1 to 7 of 7

iterate code through all open files

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-14-2013
    Location
    LA Baby!!
    MS-Off Ver
    Excel 2007
    Posts
    1,598

    iterate code through all open files

    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

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: iterate code through all open files

    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 Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: iterate code through all open files

    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

  4. #4
    Forum Contributor
    Join Date
    08-14-2013
    Location
    LA Baby!!
    MS-Off Ver
    Excel 2007
    Posts
    1,598

    Re: iterate code through all open files

    @jolivanes. If you have two "if's" don't you need two "end ifs"?

  5. #5
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: iterate code through all open files

    You don't need an "end if" for a one liner. I think one of his if statements is a one liner.

  6. #6
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: iterate code through all open files

    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.

  7. #7
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: iterate code through all open files

    Welcome, no problem at all.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. VBA code to open all the files in a folder(ppt)
    By seila.osman in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-07-2014, 04:00 PM
  2. why won't this code open .xls files
    By simeonmein in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-25-2013, 08:03 AM
  3. I need a code to open pdf files
    By Mamud in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-10-2013, 11:07 AM
  4. Code to open Shortcut files
    By mmf in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-19-2008, 11:35 AM
  5. [SOLVED] Iterate though all open spreadsheets
    By J Shrimps, Jr. in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-09-2005, 11:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1