xsl-list
[Top] [All Lists]

RE: [xsl] Error in MSXML processor but not in XMLSpy...

2006-10-25 06:03:09
Expected token ")", found "$" in
<xsl:value-of select="format-number(number(sum(for $s in 
Shipment return 0.51)), '###,.00')"/>

If this is the only XSLT 2.0 construct in your stylesheet, then you can
replace it by

<xsl:value-of select="format-number(count(Shipment)*0.51, '###,.00')"/>

But that seems unlikely...

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--