I've got a cross sheet reference Index Match formula that is working on some cells, but not others. Here's the issue:
My source sheet has a list of clients (Company column). I have a helper column in that sheet with a formula to check parent rows. I am trying to pull the Status and Type from that sheet into my Metrics Sheet.
In my Metrics Sheet, here are my formulas:
Client Status column: =IFERROR(INDEX({Client Status}, MATCH(Client@row , {Client}, 0)), "")
Client Type column: =IFERROR(INDEX({Client Type}, MATCH(Client@row , {Client}, 0)), "")
The formula is working for some clients but not others. Should I incorporate my helper column into my formula, and if so, how?
Thank you!