December 29, 201015 yr Hi, I'm exporting a form with a portal on it using XML and then transforming using XSLT into an Excel doc. In the XML export, all the portal rows show up like this: ... <Shipment_Description> <DATA>BT01L - LTO Primary Left</DATA> <DATA>BT01R - LTO Primary Right</DATA> <DATA>CT01L - LTO Primary Left</DATA> <DATA>CT01R - LTO Primary Right</DATA> <DATA>AT04L - LTO Primary Left</DATA> <DATA>AT04R - LTO Primary Right</DATA> <DATA>AT05L - LTO Primary Left</DATA> <DATA>AT05R - LTO Primary Right</DATA> <DATA>AT06L - LTO Primary Left</DATA> <DATA>AT06R - LTO Primary Right</DATA> </Shipment_Description> </ROW> </FMPDSORESULT> When I try to reference the field "Shipment Description" in the XSL like so: <xsl:value-of select="fmp:Shipment_Description" /> ...in an attempt to place the values in different rows in the Excel doc, it inserts all of the values when I really want to insert one value per row. Is there any way to stipulate in an XSL which DATA line you want within the field? For instance, DATA 1, DATA 2, DATA 3, etc.? Or is it an all or nothing situation? Thanks, Mike
December 29, 201015 yr Is there any way to stipulate in an XSL which DATA line you want Try: <xsl:value-of select="fmp:Shipment_Description/fmp:DATA[1]" />
Create an account or sign in to comment