Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I just need to do this really simple task but Im getting crazy... I just want
even numbers from a calculation cell. If the result is: 2.1 I want it show 2 if its 2.9 also 2 if 0.9 = 0 1.0 = 1 etc etc If you can help me; thank you sooo much!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=floor(A1,1)
-- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "HERNAN" wrote in message ... I just need to do this really simple task but Im getting crazy... I just want even numbers from a calculation cell. If the result is: 2.1 I want it show 2 if its 2.9 also 2 if 0.9 = 0 1.0 = 1 etc etc If you can help me; thank you sooo much!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It sounds like the decimal value is coming from a calculation. Try this.
=ROUNDDOWN((CALC),0) where "CALC" is the calculation formula for the cell. Ex: If A3 is the cell with the sum of A1 and A2, the A3 formula would be =ROUNDDOWN((A1 + A2), 0) "HERNAN" wrote: I just need to do this really simple task but Im getting crazy... I just want even numbers from a calculation cell. If the result is: 2.1 I want it show 2 if its 2.9 also 2 if 0.9 = 0 1.0 = 1 etc etc If you can help me; thank you sooo much!! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=int(a1)
or =trunc(a1) There's a difference with how negative numbers are treated. HERNAN wrote: I just need to do this really simple task but Im getting crazy... I just want even numbers from a calculation cell. If the result is: 2.1 I want it show 2 if its 2.9 also 2 if 0.9 = 0 1.0 = 1 etc etc If you can help me; thank you sooo much!! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I round numbers to the nearest multiple of 10 or 5? | Excel Worksheet Functions | |||
Round down numbers | Excel Worksheet Functions | |||
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? | Excel Worksheet Functions | |||
sort "numbers" with decimals | Excel Discussion (Misc queries) | |||
Converting imported numbers to decimals (rather than /100) | Excel Worksheet Functions |