round up/Ceiling

  • Thread starter Thread starter James P
  • Start date Start date
J

James P

I would like to use 30 for decimal rather than 50.
Basically I have a few coloums and I want the figures to
accept 30 as a ceiling. 12.29 will be rounded down to 12
however 12.30 and above will be rounded up to 13. If this
is possible please help me.
 
Well,
It does not. It rounddowns all the figures below 30
however figures below 30 appear the same. I need some
more help.
 
James P said:
Well,
It does not. It rounddowns all the figures below 30
however figures below 30 appear the same. I need some
more help.

Nonsense. Both solutions do exactly what you described.

Best wishes Harald
 
James P said:
Well,
It does not.

Well,
It does for me, although I would have written it as:

=ROUNDDOWN(A1,0)+(A1-INT(A1)>=0.3)
or
=ROUNDDOWN(A1,0)+(MOD(A1,1)>=0.3)

But Harald's formula is the way to go thought

Regards

Sandy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Formula help 3
Rounding UP 1
Round to up to a threshold 6
Something like CEILING or FLOOR 3
Rounding up to a multiple of 12 1
Round Problems 2
how to use the ceiling function 2
Round it off 3

Back
Top