Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do I round a dollar amount to the nearest .25
i.e. 11.17 to 11.25, 11.37 to 11.50, 11.67 to 11.75 and so on..... |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=CEILING(A1,0.25)
"ajeuck" wrote: How do I round a dollar amount to the nearest .25 i.e. 11.17 to 11.25, 11.37 to 11.50, 11.67 to 11.75 and so on..... |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try one of these:
Requires the Analysis ToolPak add-in be installed for Excel versions prior to Excel 2007: =MROUND(A1,0.25) This one will work in any version: =ROUND(A1/0.25,0)*0.25 -- Biff Microsoft Excel MVP "ajeuck" wrote in message ... How do I round a dollar amount to the nearest .25 i.e. 11.17 to 11.25, 11.37 to 11.50, 11.67 to 11.75 and so on..... |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Fabulous!!! Thank you!
Is there a way to set parameters? i.e if less than .12 round down more than .12 round up? "Teethless mama" wrote: =CEILING(A1,0.25) "ajeuck" wrote: How do I round a dollar amount to the nearest .25 i.e. 11.17 to 11.25, 11.37 to 11.50, 11.67 to 11.75 and so on..... |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=ROUND(A1*4,0)/4
-- __________________________________ HTH Bob "ajeuck" wrote in message ... Fabulous!!! Thank you! Is there a way to set parameters? i.e if less than .12 round down more than .12 round up? "Teethless mama" wrote: =CEILING(A1,0.25) "ajeuck" wrote: How do I round a dollar amount to the nearest .25 i.e. 11.17 to 11.25, 11.37 to 11.50, 11.67 to 11.75 and so on..... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Rounding to the nearest quarter | Excel Worksheet Functions | |||
Rounding up to nearest quarter, (:25, :50, :75, :00) | Excel Discussion (Misc queries) | |||
Rounding to the nearest quarter point? | Excel Discussion (Misc queries) | |||
Rounding results to nearest quarter (in decimals) | Excel Discussion (Misc queries) | |||
Rounding number to the nearest quarter | Excel Worksheet Functions |