I have an excel file with the data as follows: This file has about 10,000 rows
Column A Column B Column C
AB XYZ 12345
AB ABC 78900
AB ABC 23456
I want something which can read this file and create three structures as follows:
First Structure
<Data ID="1">
<Low><![CDATA[AB]]></Low>
</Data>
<Data ID="2">
<Low><![CDATA[AB]]></Low>
</Data>
<Data ID="3">
<Low><![CDATA[AB]]></Low>
</Data>
Second Structure :
<Data ID="1">
<Low><![CDATA[12345]]></Low>
</Data>
<Data ID="2">
<Low><![CDATA[78900]]></Low>
</Data>
<Data ID="3">
<Low><![CDATA[23456]]></Low>
</Data>
Third Structure
<Data ID="1">
<Low><![CDATA[XYZ]]></Low>
</Data>
<Data ID="2">
<Low><![CDATA[ABC]></Low>
</Data>
<Data ID="3">
<Low><![CDATA[ABC]></Low>
</Data>
Column A Column B Column C
AB XYZ 12345
AB ABC 78900
AB ABC 23456
I want something which can read this file and create three structures as follows:
First Structure
<Data ID="1">
<Low><![CDATA[AB]]></Low>
</Data>
<Data ID="2">
<Low><![CDATA[AB]]></Low>
</Data>
<Data ID="3">
<Low><![CDATA[AB]]></Low>
</Data>
Second Structure :
<Data ID="1">
<Low><![CDATA[12345]]></Low>
</Data>
<Data ID="2">
<Low><![CDATA[78900]]></Low>
</Data>
<Data ID="3">
<Low><![CDATA[23456]]></Low>
</Data>
Third Structure
<Data ID="1">
<Low><![CDATA[XYZ]]></Low>
</Data>
<Data ID="2">
<Low><![CDATA[ABC]></Low>
</Data>
<Data ID="3">
<Low><![CDATA[ABC]></Low>
</Data>