I would like to be able to group my data, but I am not sure on the best way to go about this. Here is the structure before and what I would like to see afterwards.
Before:
<NewRoot>
<General>
<field1>x</field1>
<field2>y</field2>
<field3>z</field3>
<General>
<NewRoot>
After:
<NewRoot>
<General>
<!---For Each Distinct Field1-->
<field1>
<field2>y</field2>
<field3>z</field3>
</field1>
</General>
</NewRoot>
Can anyone point me in the right direction or does anyone know of some good articles to read?
Thanks in advance,
Nat
Before:
<NewRoot>
<General>
<field1>x</field1>
<field2>y</field2>
<field3>z</field3>
<General>
<NewRoot>
After:
<NewRoot>
<General>
<!---For Each Distinct Field1-->
<field1>
<field2>y</field2>
<field3>z</field3>
</field1>
</General>
</NewRoot>
Can anyone point me in the right direction or does anyone know of some good articles to read?
Thanks in advance,
Nat