By whole ten I assume you mean the lowest number you would ever want would
be 10 meaning round up no matter what (since 31 would actually be 30 rounded
to the nearest 10)

Try this on...


<cfscript>
        function rounditup(num)
        {
                return round(num) + (10 - right(round(num), 1));
        }
</cfscript>

#rounditup(31)#
#rounditup(27)#
#rounditup(155)#

And even...

#rounditup(1.5)#

 
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com



-----Original Message-----
From: J W [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 11, 2005 10:24 AM
To: CF-Talk
Subject: Rounding...

I have a whole number rounding problem that I am not sure how solve most
efficiently.

I'd like to take any number and round to the nearest whole 10.

For example:
31 would equal 40
27 would equal 30
155 would equal 160

Any help would be appreciated...

Thanks!
Jeff


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.13/124 - Release Date: 10/7/2005
 



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220718
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to