Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Im trying to round a number to the nearest 0.5 either up or down. Example:
3.2 becomes 3.0 or 3.4 becomes 3.5. Please help. I'm getting so frustrated with something that should be simple. Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Arceedee" wrote:
Im trying to round a number to the nearest 0.5 either up or down. =mround(A1,0.5) If you get a #NAME error, see the Help page for MROUND. Alternatively, either of the following: =round(A1/0.5,0)*0.5 =round(A1*2,0)/2 ----- original message ----- "Arceedee" wrote in message ... Im trying to round a number to the nearest 0.5 either up or down. Example: 3.2 becomes 3.0 or 3.4 becomes 3.5. Please help. I'm getting so frustrated with something that should be simple. Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=CEILING(A1,0.5)
-- If this post helps click Yes --------------- Jacob Skaria "Arceedee" wrote: Im trying to round a number to the nearest 0.5 either up or down. Example: 3.2 becomes 3.0 or 3.4 becomes 3.5. Please help. I'm getting so frustrated with something that should be simple. Thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Won't that always round UP, rather than to the nearest, Jacob?
3.2 goes to 3.5, not 3.0 as requested. -- David Biddulph Jacob Skaria wrote: =CEILING(A1,0.5) Im trying to round a number to the nearest 0.5 either up or down. Example: 3.2 becomes 3.0 or 3.4 becomes 3.5. Please help. I'm getting so frustrated with something that should be simple. Thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks. During the initial reding "either up or down" caught my mind/.
If this post helps click Yes --------------- Jacob Skaria "David Biddulph" wrote: Won't that always round UP, rather than to the nearest, Jacob? 3.2 goes to 3.5, not 3.0 as requested. -- David Biddulph Jacob Skaria wrote: =CEILING(A1,0.5) Im trying to round a number to the nearest 0.5 either up or down. Example: 3.2 becomes 3.0 or 3.4 becomes 3.5. Please help. I'm getting so frustrated with something that should be simple. Thanks |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=MROUND(A1,0.5)
In case of problems, read Excel help for the MROUND function. Alternatively =ROUND(2*A1,0)/2 -- David Biddulph "Arceedee" wrote in message ... Im trying to round a number to the nearest 0.5 either up or down. Example: 3.2 becomes 3.0 or 3.4 becomes 3.5. Please help. I'm getting so frustrated with something that should be simple. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ROUNDING FORMULA =ROUND(B12/$B$10,1) ROUNDING TO HIGH | Excel Worksheet Functions | |||
I need a formula with rounding up & rounding down to the nearest . | Excel Worksheet Functions | |||
Rounding | Excel Worksheet Functions | |||
Rounding to 5.0 or 0.0 | Excel Discussion (Misc queries) | |||
Rounding | Excel Discussion (Misc queries) |