compare rows for a match and sum the matches

  • Thread starter Thread starter Bert
  • Start date Start date
B

Bert

How do I compare numbers say d101:l101 with c17:k17 and count the number of
matches between the 2 ranges?
 
Bert said:
How do I compare numbers say d101:l101 with c17:k17 and count the number of
matches between the 2 ranges?


Array-formula (commit with CTRL+SHIFT+ENTER):

=SUM(--(C17:K17=TRANSPOSE(D101:L101)))
 
Back
Top