I have two separate sheets that reference an employee roster, they are separated due to being different vendor company and employees on each sheet. They have the following data points.
Employee Name
Employee ID
Position
We have a roster being used by our supervisors that references details in either of these sheets when they enter a name into a specific field. I am currently using index/match on the roster to look up their Employee ID and Position. This is working perfectly; however since both "entities" are not on one sheet its giving me "no match" results for the employees not reference on the currently referenced sheet
The question is can I stack index/match function to look in separate sheets to return a matching result. For the most part, one of the sheets should always have a match that i should really never get a "no match" but i need to look and match against both sheets. Sorry if i'm rambling on
The existing function i am using is
=IF(ISBLANK([Officer Assigned]@row), "", INDEX({Roster Template Range 3}, MATCH([Officer Assigned]@row, {Roster Template Range 4}, 0)))