Excel index + match with multiple criteria and a particular use of the match mode

Excel index + match with multiple criteria and a particular use of the match mode

我正在尝试将 Excel 公式 indexmatch 与多个条件相结合,其中一个条件是近似匹配。

与第 1 列和第 2 列不同,我在其中寻找完全匹配,第 3 列中的条件需要匹配函数的匹配模式参数“完全匹配或下一个大项目”。

这是我正在尝试做的一个例子:

匹配条件: A, Y, 185

预期 return: 55.88

我认为这是一个有趣的问题。也将接受不使用索引 + 匹配的答案。

谢谢。

XLOOKUP 是一个强大的新功能。 第一个1指的是第一个结果。

=XLOOKUP(1,(A2:A17="A")*(B2:B17="Y")*(C2:C17>185),D2:D17)