Hi, I'm trying to format this and other elements alike, so it would look like this 2,590:
<Add_Amount>2,59</Add_Amount>
Doing it like this:
<xsl:decimal-format name="dkk" decimal-separator="," grouping-separator="."/>
....
<xsl:value-of select="translate(format-number(Add_Amount, '#.###,000', 'dkk'), ',', '.')" />
And the output comes out NaN. Any help is greatly appreciated.
Thanks.
//Daniel