I need to create a xls transform for the xml below that would put the items into a table format:
table would be like:
Is something like this possible?
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<doc>
<items>
<item>a</item>
<item>b</item>
<item>c</item>
<item>d</item>
</items>
<items>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
</items>
</doc>
Code:
<table> <tr> <td>a</td> <td>b</td> <td>c</td> <td>d</td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> <td>4</td> </tr> </table>
Comment