1

我正在努力实现以下目标:

IF
    Cells B5:B6 and B8:B9 contains ☑
AND
    Todays date is less than 7 days after the date defined in cell B2
THEN
    In the cell the formula is added write 'On Time' otherwise write 'Behind'

我尝试了以下公式,但是它返回“公式解析错误”

=IF(AND((REGEXMATCH((B5:B6,B8:B9), "☑")),(B2+7) < today() ), 'On Time', 'Running Behind')

关于如何实现此功能的任何想法?

编辑

从测试来看,问题似乎在于REGEXMATCH无法以我定义的方式检查 2 个不同的单元格。

可能需要ArrayFormula(--从一些研究中使用

4

1 回答 1

0

试试这样:

=IF((REGEXMATCH(JOIN("", B5:B6, B8:B9), "☑"))*
 ((B2+7) < TODAY() ), "On Time", "Running Behind")

0

于 2019-09-12T09:34:46.860 回答