Drop decimal and don't round

A

Alex

Hi folks,

In Excel XP, I have a colume of numbers with decimals... example:

151.65
144.34
433.23
144.90

I want to drop the decimals, but NOT round. Excel wants to round the
151 to 152 and 144 to 145 (for example). I simply want to make the
colume a whole number but not round up if decimal is over .5.

Is this possible?? Is this simple??

Thanks,

Alex
 
P

Paul

Alex said:
Hi folks,

In Excel XP, I have a colume of numbers with decimals... example:

151.65
144.34
433.23
144.90

I want to drop the decimals, but NOT round. Excel wants to round the
151 to 152 and 144 to 145 (for example). I simply want to make the
colume a whole number but not round up if decimal is over .5.

Is this possible?? Is this simple??

Thanks,

Alex

For a number in A1 use
=TRUNC(A1)
rather than
=ROUND(A1)
 
D

Dave Peterson

There's another function =int() that works the same way as =trunc(), but behaves
differently with negative values.

You may want to look at help to see the difference if you have negatives.
 

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

Top