Excel DAX- 如果单元格包含两个通配符字符串之一

Excel DAX- if cell contains one of two wildcard strings

我有一个包含列 [X.Description] 的 powerpivot 数据模型,它可能包含也可能不包含 "New Account 1234 Added" 或 "Account Created"。第一部分的“1234”是可变的。

如果任一字符串出现,我想创建一个 returns "New Account" 的列。现在我有:

=if(iserror(搜索("New Account *added",[X.Description])),"Normal","New Account")

但它不考虑 "Account Created" 标准。请帮忙。

试试这个:

=if(and(iserror(search("New Account * added",[X.Description])),iserror(search("Account Created",[X.Description]))),"Normal","New Account")