Forum Discussion
excel_safely
Nov 17, 2022Copper Contributor
Excel Formula for matching two columns and referencing a third column
Hi there, I'm wanting an excel formula that looks at two columns on different spreadsheets and where there is a match, references a different column value as per below: Tab 1 CARDHOLDER (tab/...
- Nov 19, 2022
Please try this formula:
=INDEX(CONTACTS[Role],MATCH(CONTACTS[Combined],CARDHOLDER[FullName],0))
Alternatively with the more modern XLOOKUP() function:
=XLOOKUP(CONTACTS[Combined],CARDHOLDER[FullName],CONTACTS[Role])
dscheikey
Nov 19, 2022Bronze Contributor
Please try this formula:
=INDEX(CONTACTS[Role],MATCH(CONTACTS[Combined],CARDHOLDER[FullName],0))
Alternatively with the more modern XLOOKUP() function:
=XLOOKUP(CONTACTS[Combined],CARDHOLDER[FullName],CONTACTS[Role])