Sumif or Sumproduct

S

Steve

Column B contains a formula result of either "DUP", "NoDUP" or its blank "".
Column M contains either "Y", "N" or it is blank (no formula in cloumn M). I
would like to calculate the number of time NoDup and Y appear in the same
row. Any thoughts?

Thanks for any help that can be offered.

Steve
 
B

Bill Kuunders

one way


=SUMPRODUCT(--(B1:B60="NoDUP"),--(C1:C60="Y"))

Can't use entire columns and the ranges need to be same size.
 
Top