I have an xml response with a structure (e.g. group> subgroups> child records).
I want to extract a list of all childRecord.name as separate data. I was hoping I could do something quickly in notepad ++, and then paste the results into excel.
I'm not sure how to start writing a macro maybe in this case that will do it for me.
<group>
<subgroup>
<childrecord name="abc">zzz</childrecord>
</subgroup>
</group>
source
share