[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] format-number/bankers' rounding problem
Subject: Re: [xsl] format-number/bankers' rounding problem
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 13 Jul 2011 19:15:48 +0100
|
On 13/07/2011 17:59, daniel whitney wrote:
I saw round-half-to-even but I actually want to round up for positive
and down for negative values. Of course I should have put that at the
very beginning of my post.
hmm wikipedia agrees with me that "bankers rounding" is half-even but
whatever, so I think you want
if($n gt 0) then round($n) else (- round(-$n))
assuming you just mean 0.5 goes up or down. If you want all fractional
parts to round up if positive and down if negative replace both round()
with ceiling() in the above.
David
|