J
Justin
I have a system that records attribute data. An Engineer enters a
specification range for the values and an integer value for the desired
number of decimal places to display. I have the following formula in my
report's record source
Round([Act_Value], Nz([Dec_Place],0))
This works to limit the number of decimals, but doesn't "set" the display.
For example
[Act_value] = 0.5
[Dec_place] = 3
The above formula will diplay 0.5. I want it to display 05.00.
Is there a way to do this? Any help will be appreciated.
specification range for the values and an integer value for the desired
number of decimal places to display. I have the following formula in my
report's record source
Round([Act_Value], Nz([Dec_Place],0))
This works to limit the number of decimals, but doesn't "set" the display.
For example
[Act_value] = 0.5
[Dec_place] = 3
The above formula will diplay 0.5. I want it to display 05.00.
Is there a way to do this? Any help will be appreciated.