Too many decimals

  • Thread starter Thread starter Jean-Paul
  • Start date Start date
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
 
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)
 
Back
Top