<cffunction name="roundTo">
                <cfargument name="numToRound" type="numeric" required="yes">
                <cfargument name="roundToNearest" type="numeric" default="5">
                        <cfscript>
                                var retVal = 0;
                                retVal = round(arguments.numToRound / 
arguments.roundToNearest) *
arguments.roundToNearest;
                        </cfscript>
                <cfreturn retVal>
        </cffunction>

-----Original Message-----
From: J W [mailto:[EMAIL PROTECTED]
Sent: 11 October 2005 15:24
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




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