mrules45 Posted March 25, 2009 Posted March 25, 2009 I have a dollar value field and i need it to always have decimals to the 100th place at the end of the number. How can i achieve this?
comment Posted March 25, 2009 Posted March 25, 2009 You could either format the field to display as decimal with a fixed number of decimal digits, or (if you need this in a calculation with a Text result), use: Let ( a = Round ( YourField ; 2 ) ; Int ( a ) & SerialIncrement ( ".00" ; 100 * Mod ( a ; 1 ) ) ) This assumes your amount will never be negative. And that you mean TWO decimal places, not 100.
Recommended Posts
This topic is 5781 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now