hello,
i've got XML file which contain the following records as shown in example below.
as you can observe there is an hierarchy of :group name" and "param name". i want to parse this file to an excel sheet. so each line will contain all param data (one cell for each field name and each field value). can anybody recommand me of a simple way to do it ?
thanks alot for all the help,
i've got XML file which contain the following records as shown in example below.
Code:
<group name="ddd" >
<param name="abc" def="0xc" tag="1" encapsulated="1"
PATH (level1.level2.level3.abc) />
<param name="def" def="0xc" tag="1" detected="1" encapsulated="1"
PATH (level1.level2.level3.def) >
short description about parameter def ...
</param>
</group>
thanks alot for all the help,
Comment