【问题标题】:How to select rows in a Google Sheet that contain certain words filtering by custom formula如何在 Google 表格中选择包含通过自定义公式过滤的某些单词的行
【发布时间】:2020-03-15 10:10:52
【问题描述】:

我需要删除给定列中不包含word1word2word3 的所有行,使用该列的筛选选项选择它们,并且(我假设)使用自定义公式.

【问题讨论】:

标签: arrays regex google-sheets filter google-sheets-formula


【解决方案1】:

试试:

=FILTER(A:C; NOT(REGEXMATCH(C:C; "word1|word2|word3")))

其中 A:C 是您的表格,C:C 是不能包含这些单词的列


如果这是用于过滤视图尝试:

=IF(NOT(REGEXMATCH(C:C; "word1|word2|word3")), 1)

【讨论】:

  • =IF(NOT(REGEXMATCH(B:B, "Primaria|Secundaria|Bachillerato")), 1) 完成了这项工作!
猜你喜欢
  • 1970-01-01
  • 2022-11-02
  • 2020-07-24
  • 2020-02-14
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-10-06
相关资源
最近更新 更多