Returns number as a string formatted with two decimal places and thousands separator.
See also DollarFormat and NumberFormat.
DecimalFormat(number)
Number being formatted.
<!--- This code shows the use of DecimalFormat ---> <HTML> <HEAD> <TITLE> DecimalFormat Example </TITLE> </HEAD> <BODY bgcolor=silver> <H3>DecimalFormat Function</H3> <P>Returns a number to two decimal places. <P> <CFLOOP FROM=1 TO=20 INDEX="counter"> <CFOUTPUT> #counter# * Square Root of 2: #DecimalFormat(counter * sqr(2))# </CFOUTPUT> <BR> </CFLOOP> </BODY> </HTML>