L
Les
In a table or query, is there a way I can force it to
always round UP to the nearest whole number (1.1 would
round up to 2)?
always round UP to the nearest whole number (1.1 would
round up to 2)?
Steve Schapel said:Ken,
I could agree if you put another - in there...
-Int(-[TheNumber])
Man, I just gotta watch you and Jeff like a hawk! <g>
--
Steve Schapel, Microsoft Access MVP
Ken said:Or, if it's always a positive integer:
Int(-TheNumber)
Or, to catch both positive and negative:
IIf(TheNumber>0, Int(-TheNumber), CInt(TheNumber))