Truncating Numbers in Coldfusion January 11, 2013 To trunc numbers without rounding in coldfusion simply use: fix(myNumber) ex: <cfoutput>#fix(34.731)#</cfoutput> Result: 34 Read more