[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] format-number round is not desired
Subject: Re: [xsl] format-number round is not desired
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Thu, 19 Apr 2012 13:59:55 +0200
|
henry human wrote:
Hello
I have following :
$var = 206000.7625
<xsl:value-of select="format-number($var ,'00000000000000;00000000000000') "/>
Output is 00000000206001
As you see the output is rounded, what is not desired!
This should be the output: 00000000206000
(the same as in $var = 206000)
Does
format-number(floor($var), '00000000000000;00000000000000')
do what you want?
--
Martin Honnen --- MVP Data Platform Development
http://msmvps.com/blogs/martin_honnen/
|