将匹配公式更新为有条件格式的最佳方法是什么?

What is the best way to update the match formula to conditionally format?

=匹配(C$13, 'Vacation - Holiday'!$B:$B, 0)

C13 是日期 01/01/2016。

我正在使用此公式有条件地格式化日历仪表板中的单元格。它工作得很好,但我需要查找数组依赖于单元格 B15 中列出的名称。

我可以使用 AND(Match()) 吗?我尝试了很多东西,感觉很接近但又很远。

"Meg" 是 sheet 'Vacation - Holiday'!$B:$B 上 "B" 列的 header。 A - J 列中有名称。

A     B           C           D        E            F         G           H
              1/1/2016   1/4/2016   1/5/2016    1/6/2016    1/7/2016    1/8/2016
     Meg                

你要的公式是:

=ISNUMBER(MATCH(C,INDEX(Sheet6!$A:$J,0,MATCH($B15,Sheet6!:,0)),0))