Reputation: 13
I want to be able to check if user in B2
has access to applications in A3:A6
.
I have a list of all users and what they have access too, how will I be able to match and compare both lists and place a Yes or No in the table?
Please see the example from the screenshot below:
I've had a look at VLookups
etc but any help wouldn't go a miss!
Upvotes: 1
Views: 2664
Reputation: 152660
Use this array formula:
=IF(ISNUMBER(MATCH(B$1&$A2,$H$2:$H$15&$G$2:$G$15,0)),"Y","N")
Being an array formula it needs to be confirmed with Ctrl-Shift-Enter instead of enter when exiting edit mode. If done correctly then Excel will put {}
around the formula.
Upvotes: 2