I'm trying to create a formula that looks up a row and column and pulls in the resulting detail. I've researched through Community and all the various documentation but can't get this to work.
=INDEX(MATCH([Client Name]@row, MATCH([Assigned To Role]@row, {Timeline Team Assignment}, 0)))
My Timeline has a bunch of tasks including a column with Client Name and a column with "Assigned to Role"... I want to look up those two fields in my Master Sheet and return the result. The data in the "Assigned to Role" is a header column in my Master Sheet. The "Timeline Team Assignment" in my formula references the entire sheet. Client Name is a row in my Master Sheet. How can I adjust the formula?
In the below example, I’m trying to pull the Assigned To field into the sheet. So for the 1st two rows we’d pull in David Schlosser. The third row below would pull in John Doe. My actual sheet has 14 different possible Roles with separate columns in the Master Table so definitely need to index off of the row and column.
Master Table
Client Name Eff Date Account Manager Communications Lead Billing Analyst
ZeniMax 1/1/2022 Mary R David Schlosser Frank K
ABC Company 6/1/2022 John Doe Lisa P Maryann
Smartsheet Support had provided me with the below formula but I can't figure out what pieces and parts of my tables should be included in the Ranges.
=INDEX({Table of Names 06128204}, MATCH([Client Name]@row, {Client Name 06128204}, 0), MATCH([Assigned to Role]@row, {Roles 06128204}, 0))
Can anyone help with this ?