May 15, 2002 #1 lminmei Programmer Joined Feb 1, 2000 Messages 111 Location US is there a cf function to convert decimal points to a percent?
May 16, 2002 #2 CFDude Programmer Joined Nov 7, 2001 Messages 316 Location US How about : <cfscript> function toPercent(x) { perCent = (x * 100) & " %"; return perCent; } </cfscript> <cfoutput>#toPercent(".57"#</cfoutput> Upvote 0 Downvote
How about : <cfscript> function toPercent(x) { perCent = (x * 100) & " %"; return perCent; } </cfscript> <cfoutput>#toPercent(".57"#</cfoutput>