Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi, is there a way to round up to the nearest 0.50 ?
eg: 2.23 should be rounded to 2.50 & 2.65 should get rounded to 3.00 -- Cheers ! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
A1 = 2.23 =CEILING(A1,0.5) -- Biff Microsoft Excel MVP "Sena" wrote in message ... Hi, is there a way to round up to the nearest 0.50 ? eg: 2.23 should be rounded to 2.50 & 2.65 should get rounded to 3.00 -- Cheers ! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks it worked !
-- Cheers ! "T. Valko" wrote: One way: A1 = 2.23 =CEILING(A1,0.5) -- Biff Microsoft Excel MVP "Sena" wrote in message ... Hi, is there a way to round up to the nearest 0.50 ? eg: 2.23 should be rounded to 2.50 & 2.65 should get rounded to 3.00 -- Cheers ! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
-- Biff Microsoft Excel MVP "Sena" wrote in message ... Thanks it worked ! -- Cheers ! "T. Valko" wrote: One way: A1 = 2.23 =CEILING(A1,0.5) -- Biff Microsoft Excel MVP "Sena" wrote in message ... Hi, is there a way to round up to the nearest 0.50 ? eg: 2.23 should be rounded to 2.50 & 2.65 should get rounded to 3.00 -- Cheers ! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Jul 8, 10:38 pm, Sena wrote:
Hi, is there a way to round up to the nearest 0.50 ? eg: 2.23 should be rounded to 2.50 & 2.65 should get rounded to 3.00 There may be several ways. One way: =0.5*roundup(A1/0.5, 0) where A1 contains the number (2.23). Caveat: you might be surprised when "3.00" is rounded up to 3.50 because, perhaps, "3.00" is merely the rounded displayed value of 3.001, for example. The following should remedy that problem: =0.5*roundup(round(A1)/0.5, 0) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Rounding to two even decimal places | Excel Worksheet Functions | |||
Decimal Place Rounding | Excel Worksheet Functions | |||
Rounding off decimal places | Excel Discussion (Misc queries) | |||
Rounding decimal | Excel Worksheet Functions | |||
Decimal places and rounding up (or down) | New Users to Excel |