I'm trying to combine Excel formulas index and match with multiple criteria, where one of the criteria is an approximate match.
Unlike columns 1 and 2, where I'm looking for an exact match, the match mode argument of the match function - "exact match or next large item" - is needed for the criteria in Column 3.
Here's an example of what I'm trying to do:
Match criteria: A, Y, 185
Expected return: 55.88
I think this is an interesting problem. Will accept answers that don't use index + match as well.
Thank you.

XMATCH, which isn't available in older versions of Excel:=INDEX(Table1[Column 4],XMATCH(185,(Table1[Column 1]="A")*(Table1[Column 2]="Y")*(Table1[Column 3]),1))