Round Function - HELP!!!!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to round up a field named 'Number of Site Days' to zero decimal
places in a query. I have gone into the expression builder and found the
build function but I can not figure out the correct way to write it. Please
can someone help me out????

Jo
 
If you use A2000 or later, try:

RoundedNumber: Round([YourNumericField], 0)

or (all versions):

RoundedNumber: Clng([YourNumericField])
 
Back
Top