+ Reply to Thread
Results 1 to 3 of 3

xml2csv

  1. #1
    Registered User
    Join Date
    05-22-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    2

    xml2csv

    Hi!

    I have been struggling with a simple import/save code. I would like to import multiple xml files in excel and save them individually in csv format with their original name. I have written a code to do this. However, the newly created csv files are empty. What am I doing wrong?

    Help would be greatly appreciated! Thanks!


    Sub xml2csv()
    Dim sPath As String
    Dim sFile As String
    Dim sDir As String
    Dim oWB As Workbook
    Dim i1 As Long
    Dim iMax As Long

    On Error GoTo Err_Clk

    sPath = "U:\Batch1"
    If Right$(sPath, 1) <> "\" Then sPath = sPath & "\"

    sDir = Dir$(sPath & "*.xml", vbNormal)
    Do Until LenB(sDir) = 0

    Workbooks.Add
    ActiveWorkbook.XmlImport URL:= _
    sDir, _
    ImportMap:=Nothing, Overwrite:=True, Destination:=Range("$A$1")

    sFile = Left(sDir, InStr(sDir, "."))

    ActiveWorkbook.SaveAs Filename:=sPath & sFile & "csv", _
    FileFormat:=xlCSV, CreateBackup:=False

    ActiveWorkbook.Close SaveChanges:=False
    sDir = Dir$
    Loop

    Err_Clk:
    If Err <> 0 Then
    Err.Clear
    Resume Next
    End If
    End Sub

  2. #2
    Valued Forum Contributor
    Join Date
    05-21-2009
    Location
    Great Britain
    MS-Off Ver
    Excel 2003
    Posts
    550

    Re: xml2csv

    The On Error statement is hiding the error in this line:

    Please Login or Register  to view this content.
    Try changing it to:
    Please Login or Register  to view this content.
    And get rid of all the error handling lines.
    Post responsibly. Search for excelforum.com

  3. #3
    Registered User
    Join Date
    05-22-2012
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: xml2csv

    It now works.
    Thank you for your help!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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