Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

RoundUp

Status
Not open for further replies.

Bronte1226

Technical User
Oct 18, 2002
123
US
I need to be able to round up any number that has a decimal that is something other than 0. Excel has a function to do this, but it is not recognized in Access. Is there another function that will do this or a work around?
 
Something like this ?
RoundUpValue = Int(DecimalValue + 0.999999999)

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
one way:
Code:
iif(int([yourfield]) = [yourfield], int([yourfield]), int([yourfield] + 1))

traingamer
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top