I am trying to setup a single row sheet with a search function that will return a value "Alarm Info" from a reference sheet that contains a large dataset. I need to search the data by 2 variables (Tool and Alarm #) that are set on the single row sheet. I have tried:
=INDEX({Master Alarm Sheet Range 1}, MATCH(Tool1, {Master Alarm Sheet Range 3}, 0), MATCH([Enter Alarm No. (Example 3931)]1, 0), 2)
and
=INDEX(COLLECT({Master Alarm Sheet Range 1}, Tool1, {Master Alarm Sheet Range 3}, [Enter Alarm No. (Example 3931)]1, {Master Alarm Sheet Range 2}), 1)
Initially I had several alarm sheets, one dedicated to each tool but I couldn't nest more than 2 INDEX MATCH in an IF statement, so I combined all of the sheets into one.
Quickly loosing my mind on this one.....