-1

Consider the Columns A and C, where the values in C can be found in A.

How do I get a match where the following conditions are met?

  • If a value of C is found in A, it will print a 1.
  • If no matches are found, it will print out 0 in column B.

enter image description here

Grant Miller
  • 27,532
  • 16
  • 147
  • 165
czmhdk
  • 29
  • 2

1 Answers1

0

This worked for me

=IF(COUNTIF($J:$J,H152)=0,"0","1")

czmhdk
  • 29
  • 2