Hi,
APPEND XML DATA, AS TEXT, IN ONE SHEET
Sub Append_XML_to_EXCEL_text()
'Dec 05, 2015
Dim sPath
sPath = "C:\Users\Username\Desktop\Folder XML" '<< change path
Dim sFile
sFile = Dir(sPath & "*.xml")
Dim r As Long, c As Long, x As Long, t As Long, L As Long
t = 0
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Set sht = Sheets.Add
Do Until sFile = ""
t = t + 1
sht.Cells(t, 1).Value = sFile
sFile = Dir()
Loop
L = t
t = 1
Dim rng As Range
Sheets.Add
For x = 1 To L
sFile = sht.Cells(x, 1).Value
ActiveWorkbook.XmlImport URL:=sPath & sFile, ImportMap:=Nothing, Overwrite:=True, Destination:=Cells(t, 1)
r = ActiveSheet.Cells(t, 1).CurrentRegion.Rows.Count
c = ActiveSheet.Cells(t, 1).CurrentRegion.Columns.Count
Cells(t, c + 1).Value = "File Name"
Cells(t + 1, c + 1).Resize(r - 1).Value = sFile
'#####################
Set rng = ActiveSheet.Cells(t, 1).CurrentRegion
ActiveSheet.ListObjects(1).Unlist
With rng
.Borders(xlEdgeLeft).LineStyle = xlNone
.Borders(xlEdgeTop).LineStyle = xlNone
.Borders(xlEdgeBottom).LineStyle = xlNone
.Borders(xlEdgeRight).LineStyle = xlNone
.Borders(xlInsideVertical).LineStyle = xlNone
.Borders(xlInsideHorizontal).LineStyle = xlNone
With .Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
With .Font
.ColorIndex = xlAutomatic
.Bold = False
.TintAndShade = 0
End With
End With
'####################
t = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row + 2
Next
sht.Delete
With ActiveSheet.UsedRange
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
.EntireColumn.AutoFit
End With
[A1].Select
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub