Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 PBI 中扮演多个角色,但如果我选择的不仅仅是变量,我的规则将不起作用。例子
[Company Profile Country] = "US" && [Company Profile Country] = "CA"
我没有收到任何错误消息,但是当我“查看为”时没有任何显示。有什么想法吗?如果我只做美国或加州,那么它工作正常。
您使用了错误的逻辑运算符。US 如果数据属于或如果它属于,您想要显示数据CA。所以运营商应该是||而不是&&。
US
CA
||
&&