Decimal

kitty77

Registered User.
Local time
Yesterday, 22:43
Joined
May 27, 2019
Messages
719
I have the following in an unbound field, how can I force this to be 2 decimal places?

="+/- " & [Number1]
 
Go to the Format property and try Fixed with 2 decimal places.
 
Last edited:
Doesn't work? Because of the text at the beginning?
 
Just for info:
"+/-" could also be set via the format property of the textbox. Then the value remains a number.
 
Last edited:
Just FYI, formatting doesn't limit the decimal places to 2. It just obfuscates the actual value. If you actually want to store only a fixed two decimal places, you need to round the result in the calculation.
 

Users who are viewing this thread

Back
Top Bottom