rounding up a calculated field to the next $5 level

  • Thread starter Thread starter Denise
  • Start date Start date
D

Denise

=([LAST YR USAGE]+[THIS YR USAGE])/2

I would like to round the answer to the next $5 level. What function do i
use?
 
You can try the following as long as the numbers are positive

= -Int(-([LAST YR USAGE]+[THIS YR USAGE])/2 / 5) * 5

John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
 
Works like a charm - ty much..

John Spencer said:
You can try the following as long as the numbers are positive

= -Int(-([LAST YR USAGE]+[THIS YR USAGE])/2 / 5) * 5

John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
=([LAST YR USAGE]+[THIS YR USAGE])/2

I would like to round the answer to the next $5 level. What function do i
use?
 
Back
Top