Home > Software design >  How to match one Text with a whole column? Google sheets
How to match one Text with a whole column? Google sheets

Time:11-03

So some agency want to know how many users are allowed to get into their system they send me all users that are allowed, now i want match every user with their data, if the user exit in their column then write "TRUE" if not "FALSE"? Thank you.enter image description here

Names Agency1 Allowed?
user565 user44 FALSE
user4851 user4 TRUE
user548 user3 FALSE
user4 user884 FALSE

CodePudding user response:

You should be able to accomplish this using enter image description here

CodePudding user response:

Another alternative is to use COUNTIF.

=ArrayFormula(countif(A2:A5,B2:B5)>0)

enter image description here

  • Related