I am using an individual number (Master NSN) on my main sheet to return Team name based on two other tables. I match the tims-nsnnumber from the first table (Achieved10Credits) with the Master NSN.
The main issue lies with adding in a second criteria based on another lookup. I aim to use the Master NSN to match information with the first table (Achieved10Credits) which contains fullname to return OwnerName from the second table (Lookup). However the formula I am using at the moment returns #NA where I don't expect a result, and #REF ! where I do.
Any guidance would be much appreciated.
entered as an array formula
The main issue lies with adding in a second criteria based on another lookup. I aim to use the Master NSN to match information with the first table (Achieved10Credits) which contains fullname to return OwnerName from the second table (Lookup). However the formula I am using at the moment returns #NA where I don't expect a result, and #REF ! where I do.
Any guidance would be much appreciated.
Code:
=INDEX(Lookup[Team name],MATCH([@[Master NSN]],Achieved10Credits[tims_nsnnumber],0),MATCH(Achieved10Credits[fullname],Lookup[OwnerName],0))