I have a value that needs to display 2 digits to the right of a decimal point. The data comes in from the database as (for example): 6.10
This then gets multiplied by it's number of occurances (for example): 2
and the result comes back as 12.2
How can I keep the trailing zero so that it displays as 12.20?
Mark