If text match in range 条件公式 Google 工作表错误

If text match in range conditonal formula Google Sheets error

大家好,我正在尝试在 Google 工作表中的一系列文本中进行匹配,基本上我使用的是这个公式:

=IF(REGEXMATCH(H2:M2, "Hi"), "Yes", "No")

但是我收到一个错误:

我很确定这行得通它看起来很简单但是我迷路了,我希望有人能帮助我。

您在一个函数中引用了一个数组,该函数并非旨在将数组作为输入,因此您需要启用它们。

尝试:

=ArrayFormula(IF(REGEXMATCH(H2:M2, "Hi"), "Yes", "No"))

I'm trying to do this: =IF(("Hi"=H2:L2),"Approve","No qualify") =IF(("Here"= H2:L2),"Approve","No qualify")

假设 E1:E2 是要对照 A1:C1 检查的值列表,您可以尝试:

=ArrayFormula(if(countif(E1:E2,A1:C1),"Approved","Not qualified"))