如何使用 Google 工作表根据列中的文本值对数据进行分类

How to use Google Sheets to categorise data, depending on text values in a column

我问这个,因为我之前使用 Python 执行过此任务。我要跳槽到一个新职位,我需要把这个任务交给不懂编程的人。

我希望有一个简单而合适的table 公式可用于Google 表格。

在以下 table 上的 Google 张中:

是否有 我可以用来自动对数据进行分类的公式?

即伪代码


如果 A 列包含“密码”或“登录”:

B 列 =“帐户访问权限”

否则如果

A 列包含“支持”或“联系人”:

B 列 =“客户支持”


其他多个类别等等。

您可以使用 REGEXMATCH:

=IFS(REGEXMATCH(A1, "password|sign in"),"Account Access",
     REGEXMATCH(A1, "support|customer"),"Customer Support",
     TRUE,"other")

根据需要扩展。