Check if Range is Integer / whole number

omairhe

Well-known Member
Joined
Mar 26, 2009
Messages
2,040
Office Version
  1. 2019
Platform
  1. Windows
Hello Excel Gurus,

How do I check if my range. Example A3:A10 consists of any integer / whole number values. From helpful forums I was able to get the formula =int(A3)=A3 .However this will check just a single cell and not the entire range. The INT formula is great as it is also a substitute for ISNUMBER formula. However the decimal is not a requirement currently.

Thanks a lot and will appreciate plenty.
Anyone?
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
How about
Excel Formula:
=SUMPRODUCT((A3:A10<>"")*(INT(A3:A10)=A3:A10))
 
Upvote 0
Try = (INT(SUMSQ(A3:A10))=SUMSQ(A3:A10)) will test if all the cells in A3:A10 are integers (or text)

The CSE formula =(PRODUCT(A3:A10-INT(A3:A10))=0) will return True if any cell in A3:A10 is an integer
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,427
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top