I have the following problem, I have a very big XML file, which have to be read in Excel via VBA to fill in the different columns of the Excel sheet table.
I wrote the following code to open the XML file
Sub openxXML()
Dim xml As Workbook
Dim varxml As Variant
varxml = Application.GetOpenFilename("Alle Data (*.*), *.*,XML-Data(*.xml),*xml*", 2, "Choose XML-File", _
"choose", False)
If varxml = False Then
MsgBox "No Data selected"
End If
End Sub
But now I don't know how I turn this data into my Excel table with many columns.
Can anybody tell me if the code above is okay and how to continue?
Thank u and sorry for my English, I am from France