Too many decimals

J

Jean-Paul

Hi,
I have following formula:

Me!BMI.Value = gewicht / (lengte * lengte) * 10000

this returns a valu with 5 decimals...
How can I show onlu 1 decimal?

Thanks
 
O

Ofer Cohen

You can use the Round function and specify in the end how many decimals you
want (Round([Value],1)


Me!BMI.Value = Round(gewicht / (lengte * lengte) * 10000,1)
 
Top