Aug 24, 2006 #1 ice7899 Programmer May 14, 2006 59 GB Hello I'm trying to convert milliseconds into seconds to 2 decimal places For example 147 milliseconds to become 0.15 seconds I'm using NumberFormat but it's not working out How can I achieve this efficiently?
Hello I'm trying to convert milliseconds into seconds to 2 decimal places For example 147 milliseconds to become 0.15 seconds I'm using NumberFormat but it's not working out How can I achieve this efficiently?
Aug 24, 2006 2 #2 Wullie Programmer Mar 17, 2001 3,674 GB How about the following? Code: <cfset input = 147> #NumberFormat(input / 1000, '___.__')# Hope this helps Wullie YetiHost - Quality Coldfusion 7/Windows Hosting The pessimist complains about the wind. The optimist expects it to change. The leader adjusts the sails. - John Maxwell Upvote 0 Downvote
How about the following? Code: <cfset input = 147> #NumberFormat(input / 1000, '___.__')# Hope this helps Wullie YetiHost - Quality Coldfusion 7/Windows Hosting The pessimist complains about the wind. The optimist expects it to change. The leader adjusts the sails. - John Maxwell
Sep 2, 2006 #3 imstillatwork IS-IT--Management Sep 26, 2001 1,605 US just for readability, and nothing agains the way Wullie posted.. ___.__ can be 999.99 also Kevin http://www.lot-o-nothin.com/cfml/ Phase 1: Read the CFML Reference Phase 2: ??? Phase 3: Profit! Upvote 0 Downvote
just for readability, and nothing agains the way Wullie posted.. ___.__ can be 999.99 also Kevin http://www.lot-o-nothin.com/cfml/ Phase 1: Read the CFML Reference Phase 2: ??? Phase 3: Profit!