Hi, everyone, I need to read a tons of xml files like this one:
<?xml version="1.0" encoding="UTF-8"?>
<IM>
<CR ID1="13" ID2="460">
</CR>
</IM>
my code in VBA is like:
For i = 1 To 100 'suppose i have 100 xml files
Filename = Sheet1.Cells(i, 1) 'where i store the file path
Set Doc = New...