counting functions

J

jcrown

Hello,
I am trying to get a function to calculate for me a group of numbers.
Example: I have in one column 38, 39, 37, 39. I want to know if there is a
function that I can use that will calculate out the amount of 39 & 37. (the
answer I am looking for would be 3). Please help. thanks, joe
 
M

Max

Assume the numbers are in col A, in A1 down

Put in say, B1: =SUMPRODUCT((A1:A100=37)+(A1:A100=39))

Adapt the ranges to suit, but note that entire col references (A:A, B:B,
etc) cannot be used in SUMPRODUCT
 
A

Aladin Akyurek

Some options...

=SUM(COUNTIF(Range,{37,39}))

=SUMPRODUCT(ISNUMBER(MATCH(Range,{37,39},0))+0)

If X2:Y2 houses the criterion numbers (i.e., 37, 39)...

=SUMPRODUCT(ISNUMBER(MATCH(Range,X2:Y2,0))+0)
 
Top