Hello. I have never dealt with .XML files before until now. All I am trying to do is extract the data from this .xml file and import into Excel and display the SKU, Part, Qty, etc. of each item in their own columns/row. I have searched the web and cannot seem to find an easy solution. Below are some of the contents of the .xml file. The entire .xml follows this same format.
-------------- Beginning -------------------
<?xml version="1.0" encoding="UTF-8" ?>
- <AvailableBatch>
<Date>12/17/2010</Date>
<UDT>1292603880</UDT>
<Type>Changes</Type>
- <Available>
<Sku>5290</Sku>
<Part>AA05BK</Part>
<Qty>107</Qty>
<Time>11:38:18</Time>
</Available>
- <Available>
<Sku>5390</Sku>
<Part>AA20BK</Part>
<Qty>589</Qty>
<Time>11:38:18</Time>
</Available>
- <Available>
<Sku>6120</Sku>
<Part>AA68</Part>
<Qty>337</Qty>
<Time>11:38:18</Time>
</Available>
- <Available>
<Sku>7500</Sku>
<Part>AB44</Part>
<Qty>30</Qty>
<Time>11:38:18</Time>
</Available>
-------------- END -------------------
-------------- Beginning -------------------
<?xml version="1.0" encoding="UTF-8" ?>
- <AvailableBatch>
<Date>12/17/2010</Date>
<UDT>1292603880</UDT>
<Type>Changes</Type>
- <Available>
<Sku>5290</Sku>
<Part>AA05BK</Part>
<Qty>107</Qty>
<Time>11:38:18</Time>
</Available>
- <Available>
<Sku>5390</Sku>
<Part>AA20BK</Part>
<Qty>589</Qty>
<Time>11:38:18</Time>
</Available>
- <Available>
<Sku>6120</Sku>
<Part>AA68</Part>
<Qty>337</Qty>
<Time>11:38:18</Time>
</Available>
- <Available>
<Sku>7500</Sku>
<Part>AB44</Part>
<Qty>30</Qty>
<Time>11:38:18</Time>
</Available>
-------------- END -------------------