Google表格过滤器查看regexmatch自定义公式

时间:2018-07-26 16:51:12

标签: google-sheets

我正在使用过滤器视图,以便可以在不同类型的过滤器之间轻松切换,并且我想从多个过滤器视图的单列中排除某些值。以下公式是我遇到的问题。我目前在过滤器设置的“自定义公式”部分中使用此方法,该方法有效,但包含空白单元格。如何在此公式中排除空白/空单元格?

有效,但其中包含空单元格:

=not(regexmatch(D2:D, "Completed and Sent|Killed/On Hold|Completed Post Invoice Change Order"))

不起作用:

=not(and(regexmatch(D2:D, "Completed and Sent|Killed/On Hold|Completed Post Invoice Change Order"),isblank(D2:D))

enter image description here

1 个答案:

答案 0 :(得分:2)

=and(not(regexmatch(D2, "Completed and Sent|Killed/On Hold|Completed Post Invoice Change Order")),not(isblank(D2))) 

您应该在AND()中使用NOT()。此外,仅D2就足够了。