Hi,
I am trying to transform an xml document:
I want to transform it so that if a row node has the same date as another row node then group it together. Here is the result I need:
Does anyone know how to do this using XSL?
Thanks,
Din112
I am trying to transform an xml document:
Code:
<offers>
<row dates="2008-01-17T00:00:00" Price="22.7900" Name="1" />
<row dates="2008-01-19T00:00:00" Price="64.2900" Name="2" />
<row dates="2008-01-19T00:00:00" Price="74.2900" Name="3" />
</offers>
Code:
<table>
<tr>
<td>17-Jan-08</td>
<td>1</td><td>22.79</td>
</tr>
<tr>
<td>19-Jan-08</td>
<td>2</td><td>74.29</td>
<td/>
<td>3</td><td>74.29</td>
</tr>
</table>
Does anyone know how to do this using XSL?
Thanks,
Din112