Re: [xsl] format-number round is not desired

Subject: Re: [xsl] format-number round is not desired
From: henry human <henry_human@xxxxxxxx>
Date: Thu, 19 Apr 2012 14:09:18 +0100 (BST)
Hi all!
That is the solution!
Thanks a lot!
Kind regards
Hen

-----
Urspr|ngliche Message -----
Von: Martin Honnen <Martin.Honnen@xxxxxx>
An:
xsl-list@xxxxxxxxxxxxxxxxxxxxxx
CC: 
Gesendet: 13:59 Donnerstag, 19.April 2012
Betreff: Re: [xsl] format-number round is not desired

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/

Current Thread