Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here is what I got:
F24 = 64 F25 = 12 on cell F26 I got the function =MROUND(F24, F25) which gives me 60. Basically the formula is rounding 64 to the nearest multiple of 12, which it"s 60. But what I want is for a formula to roundup to the nearest multiple of 12. In other words I want the outcome to be 72. Can anybody out there help me with this issue. If you have an answer please send me an e-mail to . Thank you for the time |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=CEILING(F24, F25)
Note: if you ask a question in a newsgroup, you get an answer not by email but in the newsgroup, so that the answer can hopefully be of benefit to others (and so that other folk can correct an answer if it's wrong!). -- David Biddulph "XL 411" <XL wrote in message ... Here is what I got: F24 = 64 F25 = 12 on cell F26 I got the function =MROUND(F24, F25) which gives me 60. Basically the formula is rounding 64 to the nearest multiple of 12, which it"s 60. But what I want is for a formula to roundup to the nearest multiple of 12. In other words I want the outcome to be 72. Can anybody out there help me with this issue. If you have an answer please send me an e-mail to . Thank you for the time |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming you do not want to round up F24's value if it is already an exact
multiple of the value in F25... =IF(MOD(F24,F25)=0,F24,MROUND(F24+F25, F25)) Rick "XL 411" <XL wrote in message ... Here is what I got: F24 = 64 F25 = 12 on cell F26 I got the function =MROUND(F24, F25) which gives me 60. Basically the formula is rounding 64 to the nearest multiple of 12, which it"s 60. But what I want is for a formula to roundup to the nearest multiple of 12. In other words I want the outcome to be 72. Can anybody out there help me with this issue. If you have an answer please send me an e-mail to . Thank you for the time |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How about:
"=MROUND(F24,F25)+IF(MROUND(F24,F25)<F24,F25,0 )" Will "XL 411" wrote: Here is what I got: F24 = 64 F25 = 12 on cell F26 I got the function =MROUND(F24, F25) which gives me 60. Basically the formula is rounding 64 to the nearest multiple of 12, which it"s 60. But what I want is for a formula to roundup to the nearest multiple of 12. In other words I want the outcome to be 72. Can anybody out there help me with this issue. If you have an answer please send me an e-mail to . Thank you for the time |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=ROUNDUP(A1/12,0)*12
"XL 411" wrote: Here is what I got: F24 = 64 F25 = 12 on cell F26 I got the function =MROUND(F24, F25) which gives me 60. Basically the formula is rounding 64 to the nearest multiple of 12, which it"s 60. But what I want is for a formula to roundup to the nearest multiple of 12. In other words I want the outcome to be 72. Can anybody out there help me with this issue. If you have an answer please send me an e-mail to . Thank you for the time |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy of excel file not showing formulal/function in the function b | Excel Discussion (Misc queries) | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Emulate Index/Match combo function w/ VBA custom function | Excel Worksheet Functions | |||
Nested IF Function, Date Comparing, and NetworkDays Function | Excel Worksheet Functions |