counting in exel chart

B

brian exel

I have columns of numbers some are interger number some are numbers with
decimal places. I want to count the number of integer numbers in each column
any ideas which formula I use. I have tried countif but cant find anyway of
specifying the integer number?
 
D

Don Guillett

this is an array formula which must be entered using
ctrl+shift+enter

=COUNT(IF(MOD(H3:H6,1)=0,H3:H6))
 
Top