How do you calculate formatted values
I'm trying to calculate the total of 2 fields which have been formatted using math.floor; I want to calculate the formatted amount of these 2 fields, NOT the rawValue. How can I do this?
example:
Field 1 rawValue = 700.44 Field 1 formatted value = 700.4
Field 2 rawValue = .42 Field 2 formatted value = .4
Total rawValue = 700.86 (rounded 700.9) Total formatted value = 700.8 ; this is what I need to do