XML to Excel (Examples)

In the following examples, I'm going to convert a sample XML file (shown next) to Excel Book. Click the image to download this file.
sample XML file

DOM Tree view (conv-xml2xl-1.bas)

read an well-formed XML file, convert to an Excel Worksheet as a DOM Tree view.
This is good to see an image of the document structure.
Tree view sample

Plain Table view (conv-xml2xl-2.bas)

read an well-formed XML file, convert to an Excel Worksheet as a simple table view.
This is good to get node's text. All contents (text nodes) are placed on B-column. In A-column, full document paths are described.
Table view sample

Multi-Sheet view (conv-xml2xl-3.bas)

read an well-formed XML file, convert to a series of Excel Worksheets.
This is good to see a large document with a few depths of nodesget node's text. All contents (text nodes) are placed on B-column. In A-column, full document paths are described.
Multi-Sheet view sample

to read an instruction of downloading and setting up, try this page, please.