Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I am working on a worksheet where I am doing orders, if I have an order of
anything over a whole number I need to round it up to 25 more. So 26 would need to be 50, etc. If it's 25 I need it to be 25 or if its 12 I need for it to be 25, 51 would need to be 75, etc. How do I go about doing this? |
#2
![]() |
|||
|
|||
![]()
=ceiling(a1,25)
"Mac" wrote in message ... I am working on a worksheet where I am doing orders, if I have an order of anything over a whole number I need to round it up to 25 more. So 26 would need to be 50, etc. If it's 25 I need it to be 25 or if its 12 I need for it to be 25, 51 would need to be 75, etc. How do I go about doing this? |
#3
![]() |
|||
|
|||
![]()
Try this
=IF(MOD(A1,25)=0,A1,A1-MOD(A1,25)+25) "Mac" wrote in message ... I am working on a worksheet where I am doing orders, if I have an order of anything over a whole number I need to round it up to 25 more. So 26 would need to be 50, etc. If it's 25 I need it to be 25 or if its 12 I need for it to be 25, 51 would need to be 75, etc. How do I go about doing this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel files in separate program windows | Excel Discussion (Misc queries) | |||
Question about Excel 2003 | Excel Discussion (Misc queries) | |||
Historical Excel question statistical capabilities | Excel Discussion (Misc queries) | |||
MS Excel Question | Excel Worksheet Functions | |||
Excel question | Excel Discussion (Misc queries) |