1

假设我有这个公式

=MATCH(16,{5;10;15;20;25},-1)

为什么它返回 N/A?我希望它返回 4。

比...更棒

但更让我困惑的是,当我将其更改为 Less than Match(1) 时,它按预期工作。

少于

尽管我知道它会匹配错误的东西,但我仍然认为最好包含我尝试将所有值作为 Text 并且它没有返回 N/A,尽管1无论我用什么替换16它都会返回

文本匹配

4

1 回答 1

5

It's correct.

  • with -1 The values in the lookup_array argument must be placed in descending order
  • with 1 The values in the lookup_array argument must be placed in ascending order
于 2013-05-06T15:37:32.177 回答