Hi, I want to be able to first check and see which cells within column E contain the string 00-EI. Once I have determined this I would like to look at columns C & D and then count the number of corresponding pairs (ie. c3 & d3) that are non blank AND also correspond to the 00-EI in column E.
I can count the non blanks, and can determine which cells in column E contain 00-EI but when I try to combine them I cannot get the correct syntax. Here is the syntax I am trying:
=IF(qryCableRoutingSchedule!E:E="00-VI",SUMPRODUCT(--(qryCableRoutingSchedule!C2:C351 <> ""),--(qryCableRoutingSchedule!D2:D351 <> "")),0)
Here is an example of what I have
row#1 C_________D__________E
row#2 2------------6----------00-EI
row#3 1-----------___---------00-EI
row#4 3 -----------3----------00-FF
row#5 55-----------44---------00-EI
So in this case I would like the count to be 2( Row#2 and row#5) since they both correspond to 00-EI(column E) and both have values in Columns C and D.
Thanks for your help!
I can count the non blanks, and can determine which cells in column E contain 00-EI but when I try to combine them I cannot get the correct syntax. Here is the syntax I am trying:
=IF(qryCableRoutingSchedule!E:E="00-VI",SUMPRODUCT(--(qryCableRoutingSchedule!C2:C351 <> ""),--(qryCableRoutingSchedule!D2:D351 <> "")),0)
Here is an example of what I have
row#1 C_________D__________E
row#2 2------------6----------00-EI
row#3 1-----------___---------00-EI
row#4 3 -----------3----------00-FF
row#5 55-----------44---------00-EI
So in this case I would like the count to be 2( Row#2 and row#5) since they both correspond to 00-EI(column E) and both have values in Columns C and D.
Thanks for your help!