xsl-list
[Top] [All Lists]

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

2012-04-23 09:03:33
Thanks all!
All solutions are helpful..I used the ceiling function which pretty does what I 
want. 

BR,
hny



----- Ursprüngliche Message -----
Von: David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk>
An: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
CC: henry human <henry_human(_at_)yahoo(_dot_)de>
Gesendet: 11:33 Montag, 23.April 2012
Betreff: Re: [xsl] format-number round is not desired

On 23/04/2012 10:26, henry human wrote:
Hi guys
There is still a penalty, now If the number is negative the floor funciton 
rounds!
Sample:
$var = - 20624.50
output = -0000000020625
-------------------------------------

I can't rember if you are using xslt 1 or 2, in 1, perhaos teh easiest way 
would be

<xsl:choose>
<xsl:when test="$var &gt;= 0"><xsl:value-of  ....floor($var)
<xsl:otherwise>.................................ceil(....

or (as there may be edge cases with formatting negative numbers anyway perhaps


<xsl:choose>
<xsl:when test="$var &gt;= 0"><xsl:value-of  ....floor($var)
<xsl:otherwise>-<xsl:value-of  ....floor(-$var)

David

-- google plus: https:/profiles.google.com/d.p.carlisle

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--

--~------------------------------------------------------------------
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>
--~--