WMitchellCPQ
Programmer
Hi im fairly new to XSL and im i have no idea how todo the following.
I'm in a for each loop of a range which happen to be data values - OrderItems. I have another range called OrderItemsHeader which basically is the field name. I want to loop throught the item and then create a tag and inside the tag output the orderitem data.
Below im able to loop through the data range ok. My problem is extracting the data from the header range and then with that creating the tags
Any help or suggestions would be greatly appreciated
W
I'm in a for each loop of a range which happen to be data values - OrderItems. I have another range called OrderItemsHeader which basically is the field name. I want to loop throught the item and then create a tag and inside the tag output the orderitem data.
Below im able to loop through the data range ok. My problem is extracting the data from the header range and then with that creating the tags
Code:
<xsl:for-each select="xl:Row[xl:Cell/xl:NamedCell[@ss:Name='OrderItems']]">
"<??>- Im not sure how to create the tags based on another range
<xsl:value-of select="xl:Cell[position()=1]/xl:Data"/>
</??>
</xsl:for-each>
W