+ Reply to Thread
Results 1 to 2 of 2

Please Help! Insert Header VBA only working on one wb

Hybrid View

  1. #1
    Registered User
    Join Date
    02-13-2013
    Location
    Tampa, FL
    MS-Off Ver
    Excel 2010
    Posts
    17

    Please Help! Insert Header VBA only working on one wb

    I have a macro (see below) that is supposed to open each workbook in a specified folder and insert a header row. The macro is opening each workbook, however it is only creating the header in the first workbook it opens...? Any help correcting this would be greatly appreciated! Thank you

    Sub InsertHeader()
        Application.DisplayAlerts = False
        Dim strFilename As String
        Dim strPath As String
        Dim wbMaster As Workbook
        Dim wsMaster As Worksheet
        Dim wbFiles As Workbook
    
        Set wbMaster = ThisWorkbook
        Set wsMaster = wbMaster.Sheets(1)
        strPath = "C:\Users\Me\Desktop\New folder\"
        strFilename = Dir(strPath & "*.xlsx")
    
        Do While strFilename <> ""
            Set wbFiles = Workbooks.Open(strPath & strFilename, False)
            wbFiles.Sheets(1).Rows(RowIndex:=1).Insert
            wbFiles.Sheets(1).Range("A1:B1") = Array("Name", "Number")
            wbFiles.Close savechanges:=True
            strFilename = Dir
        Loop
        Application.DisplayAlerts = True
    End Sub

  2. #2
    Forum Expert
    Join Date
    06-25-2009
    Location
    Sofia, Bulgaria, EU
    MS-Off Ver
    Excel 2003-2013
    Posts
    1,290

    Re: Please Help! Insert Header VBA only working on one wb

    Your code works 100% fine for me. I created test folder with several workbooks in it and it insert row and add header in all of them.
    If you are pleased with a member's answer then use the Star icon to rate it.

+ 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. Insert header , hide rows and insert page breaks
    By dwx in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-16-2013, 10:10 AM
  2. Insert header , hide rows and insert page breaks
    By dwx in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-15-2013, 03:28 AM
  3. Using EXCEL VBA to create word ,insert header in word, add textbox in header and fill pic
    By xiaorenwuhyl in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 04-28-2013, 05:32 AM
  4. Working with Header and Footer
    By gilbert in forum Excel General
    Replies: 2
    Last Post: 03-24-2011, 04:36 AM
  5. [SOLVED] Insert Header using ASP
    By creed1 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 12-13-2005, 02:00 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