Referencing previous column in COUNTIF

A

alistair_henderson

Evening All,

I am a novice Excel user, so please excuse the probably very basic
question. I have a spreadsheet with two columns, e.g.

A E
D E
F L
A E
G E

I am trying to get some totals for column 2 based on the value, so I
used COUNTIF(D4:D34, "E"). This is great, but I only want to count
column 2 if the corresponding cell in column 1 is "A" (or not "A" for
my other total). I think I want to somehow use INDIRECT as well, but
can't quite figure out how! The total I am looking for in the example
would be 2 (col2="E" and col1="A").

Thanks for any hints/advice.

Cheers,
Al.
 
B

Bob Phillips

=SUMPRODUCT(--(A1:A10="A"),--(B1:B10-"E"))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
P

Peo Sjoblom

=SUMPRODUCT(--(A2:A100="A"),--(B2:B100="E"))

will count "E" in B where A is "A"
 
A

alistair_henderson

Thanks everyone for all your help there - superb! Just one question,
what does '--(C4:C34="A")' do - is it some method of creating an array
from the cells?

Thanks again,
Al.
 
Top