Hi, I have some data from an xml file in excel which I need to extract certain data, please see example below..
<vXREF>
<Comp>aaa</Comp>
<CompPart>12345</CompPart>
<Xref>98765</Xref>
</vXREF>
<vXREF>
<Comp>bbb</Comp>
<CompPart>22222</CompPart>
<Xref>33333</Xref>
</vXREF>
<vXREF>
<Comp>aaa</Comp>
<CompPart>67890</CompPart>
<Xref>09878</Xref>
</vXREF>
Is it possible to covert to something like... (only where Comp = aaa) or this could be filtered out afterwards?
Comp, CompPart, Xref
aaa, 12345, 98765
aaa, 67890, 09878
Please can any one help?
Many thanks
Alan
<vXREF>
<Comp>aaa</Comp>
<CompPart>12345</CompPart>
<Xref>98765</Xref>
</vXREF>
<vXREF>
<Comp>bbb</Comp>
<CompPart>22222</CompPart>
<Xref>33333</Xref>
</vXREF>
<vXREF>
<Comp>aaa</Comp>
<CompPart>67890</CompPart>
<Xref>09878</Xref>
</vXREF>
Is it possible to covert to something like... (only where Comp = aaa) or this could be filtered out afterwards?
Comp, CompPart, Xref
aaa, 12345, 98765
aaa, 67890, 09878
Please can any one help?
Many thanks
Alan