Subject:Iterating through value tags Author:Retaw Gnirps Date:05 Aug 2009 02:10 PM Originally Posted: 05 Aug 2009 02:09 PM
Hello,
I have a page in XML that I would like to format as a table. Right now, all of the "Columns" of the table are grouped together, and I want to split them into the "Rows" of the table.
The general format of the XML document is as follows:
and I would like to make a table such as:
Column1 Column2
7 10
3 19
5 123
I am new to XSLT, and have been trying to follow tutorials that I could find online. I found a way to iterate over all of the values at once and display the numbers such as "Column1 7 3 5" and "Column2 10 19 123" but don't know how to "pick-off" a single VALUE item each time.