February 3, 200521 yr I have a calculated result being input into a global number field. Is there a way to limit the number of decimal places displayed or calculated? Thanks.
February 3, 200521 yr For display, in layout mode, do Format Number, format number as decimal, fixed number of decimal places. For calculation, do Round ( number , precision ). Precision as a positive number indicates places to right of decimal, as a negative number to the left. For example Round (1.23456 , 2 ) returns 1.23. Round (123456.7 , -3 ) returns 123000
Create an account or sign in to comment