rounding

  • Thread starter Thread starter Jean-Paul De Winter
  • Start date Start date
J

Jean-Paul De Winter

Hi,
I found a way to round numbers like 6.4 to 6.5
The formula works just perfect but, rounding 6.2 returns 6.0
Is there a way to display only 6 instead of 6.0???
The problem is when I limit the decimal place to 0 I never get 6.5....
Thanks
JP
 
Hi
AFAIK this is not really possible if you want the numbers to remain numeric
values. I can only think about a macro solution
 
The result is a "final resul" so nu further calculation is needed...
It's the % pupils get on their monthly report...
JP
 
Hi
1. One way to try (works for me): Format the target cell as 'General' and
use a formula such as
=ROUND(A1*2,0)/2

2. If this does not work try
try
=IF(ROUND(A1*2,0)/2=TRUNC(A1),TEXT(TRUNC(A1),"0"),TEXT(ROUND(A1*2,0)/2,"0.0")
 
yep... thanks
JP
Frank Kabel said:
Hi
1. One way to try (works for me): Format the target cell as 'General' and
use a formula such as
=ROUND(A1*2,0)/2

2. If this does not work try
try
=IF(ROUND(A1*2,0)/2=TRUNC(A1),TEXT(TRUNC(A1),"0"),TEXT(ROUND(A1*2,0)/2,"0.0"
)
 
Hi,
I found a way to round numbers like 6.4 to 6.5
The formula works just perfect but, rounding 6.2 returns 6.0
Is there a way to display only 6 instead of 6.0???
The problem is when I limit the decimal place to 0 I never get 6.5....
Thanks
JP

Format the cell as "General".


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Round to nearest whole number 5
rounding numbers 3
Rounding Up question 2
Zeros after the decimal 7
Rounding problem 9
nested lookups ?? 3
Force display to round down 6
Rounding 2

Back
Top