Rounding up to the nearest 6" increment

G

GreenMonster

I need a function that rounds a number up to the nearest 6" increment

In other words, if the number to be rounded is 19" the value returned would
be 24". If the number is 20" the value returned would also be 24".

To complicate matters, if the number to be rounded up is less than or equal
to 2" then the the returned value needs to be then 2nd nearest 6" increment.

In other words, if the number to be rounded is 17" or 16" then the returned
value needs to be 24". 15" would round to 18", as would 14, 13, and 12. 10
and 11 would also round to 18".

Make sense? Hope so.

Thanks
 
G

Guest

Give this a try to round cells in B1

=IF(MOD(B1, 6)>=4, B1+12-MOD(B1, 6), B1+6-MOD(B1, 6))
 
B

Bob Phillips

I must admit to not having understood that other part, but it seems you did.

Bob
 

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

Top