+ Reply to Thread
Results 1 to 2 of 2

VBA to import multiple XML Files

  1. #1
    Registered User
    Join Date
    03-18-2014
    Location
    UK
    MS-Off Ver
    Excel 2007
    Posts
    2

    VBA to import multiple XML Files

    Hi all,

    This is my first post here, so forgive me if I'm not as clear and concise as I need to be.

    I have a problem with importing a number of XML Files into an Excel spreadsheet (Excel 2007) for data analysis purposes. Essentially, I going to be recieving a number of XML files each week, which I'll need to import and carry out some simple analysis upon. The number and file name of the XML files that I'll recieve will be variable and difficult to predict (but it's safe to assume that the number is normally going to be in the thousands!), but they will all be deposited in the same folder until processing has been completed.

    I have written a quick macro that interrogates the folder that I'll use to store the data, and returns the file names of the XML files in a list in Column A to sheet called, cleverly, "Files".

    The next part is where I'm struggling. I would like to import the data from each of the files listed, row by row (starting in row 2), into another sheet, "XML Data".

    Because of the variable number and name of the files, I don't want to hard-code the name of the files into the macro. I thought this might be avoidable as I already have a function to create a list of the files that I'm interested in, but I can't seem to get my head around it!

    Any help you can provide would be much appreciated.

    Best regards,
    Thell

  2. #2
    Registered User
    Join Date
    03-18-2014
    Location
    UK
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: VBA to import multiple XML Files

    All,

    I've found a solution that seems to work. In case anybody is interested, I've used the following code:

    Sub Batch_XML_Import()
    On Error GoTo errh
    Dim myWB As Workbook, WB As Workbook
    Set myWB = ThisWorkbook
    Dim myPath
    myPath = "C:\Folder 1\Folder 2\Received XML Data\" '<<< change path
    Dim myFile
    myFile = Dir(myPath & "*.xml")
    Dim t As Long, N As Long, r As Long, c As Long
    t = 1
    N = 0

    Application.ScreenUpdating = False
    Do While myFile <> ""
    N = N + 1
    Set WB = Workbooks.OpenXML(Filename:=myPath & myFile)
    If N > 1 Then
    r = WB.Sheets(1).Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    c = WB.Sheets(1).Cells.Find(What:="*", SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column
    WB.Sheets(1).Range(Cells(3, "A"), Cells(r, c)).Copy myWB.Sheets("XML Data").Cells(t, "A")
    Else
    WB.Sheets(1).UsedRange.Copy myWB.Sheets("XML Data").Cells(t, "A")
    End If
    WB.Close False
    t = myWB.Sheets("XML Data").Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row + 1
    myFile = Dir()
    Loop
    Application.ScreenUpdating = True
    myWB.Save
    Exit Sub
    errh:
    MsgBox "no files xml"
    End Sub

    Thanks,
    Thell

+ 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. [SOLVED] Macro to Import Multiple TXT Files into workbook - User to select files/directory
    By saber007 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 05-15-2013, 08:43 PM
  2. [SOLVED] Import multiple text files from multiple folders
    By gshock in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 02-01-2013, 03:49 PM
  3. import multiple html files from multiple and subfolders
    By wali in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-04-2011, 04:33 PM
  4. Import Multiple XML Files
    By yawnzzzz in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-25-2008, 10:01 AM
  5. Replies: 2
    Last Post: 08-30-2007, 12:34 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