View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Round up to the next number in the set

=CEILING(A2,305)
--
David Biddulph

"Christina" wrote in message
...
You may try using some IF statements, ie if <305 then 305, if 306 and
<610,
then 610, if 611 then 910

It's been a long time since I used something like this, obviously the
above
is not the exact formula - but someone else may chime in with the right
formula

"will" wrote:

Hi,

Probably a simple one, but I can't think of an easy way of rounding up to
the next number in a set - eg the set is 305, 610 and 915. The
calculation
will produce an answer which I want rounded up to one of the 3 numbers
above
- eg, 200 is rounded up to 305; 400 is rounded up to 610 etc.

Many thanks for any help.

Will