Round Numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to know if there is a way to identify round/integer numbers.
EG:

invoice amount

1 34345.5
4 324.45
6 100
7 200

Thanks for any help
 
What do you want them to round to?
There are numerous formulas to help:
ROUND
 
If you want to round to the nearest integer, one way:

=ROUND(A1,0)


Replied prematruely there ...
Numverous functions to round (this list is not exhaustive):
ROUND
ROUNDDOWN
ROUNDUP
FLOOR
CEILING
INT

Check out the Help filels by Function name.

tj
 
I would like to know if there is a way to identify round/integer numbers.
EG:

invoice amount

1 34345.5
4 324.45
6 100
7 200

Thanks for any help

=A1=INT(A1) will --> TRUE if the number is an integer.


--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

Rounding Up to the 50 4
Round up to the next number in the set 7
excel macro 1
rounding currency amounts 4
Round up or down by set variable 3
Pivot table and value range 2
Round formula 1
Sumproduct on date range 3

Back
Top