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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top