admin管理员组文章数量:1344519
I have a column called "CSI" listing different names formatted as "Last Name - First Name":
- Doe - John
- Sanders - Colonel
- Jackson - Michael
All three names above are part of Team 1 and all the remaining names are automatically considered being part of Team 2.
How do I add a new column indicating that the person is part of Team 1 or Team 2?
I tried the formulas below but failed:
= if [CSI] = "Doe - John" then "Team 1" else if [CSI] = "Sanders - Colonel" then "Team 1" else if [CSI] = "Jackson - Michael" else "Team2"
= if [CSI] = #text(Doe - John) then "Team 1" else if [CSI] = #text(Sanders - Colonel) then "Team 1" else if [CSI] = #text(Jackson - Michael) else "Team2"
I have a column called "CSI" listing different names formatted as "Last Name - First Name":
- Doe - John
- Sanders - Colonel
- Jackson - Michael
All three names above are part of Team 1 and all the remaining names are automatically considered being part of Team 2.
How do I add a new column indicating that the person is part of Team 1 or Team 2?
I tried the formulas below but failed:
= if [CSI] = "Doe - John" then "Team 1" else if [CSI] = "Sanders - Colonel" then "Team 1" else if [CSI] = "Jackson - Michael" else "Team2"
= if [CSI] = #text(Doe - John) then "Team 1" else if [CSI] = #text(Sanders - Colonel) then "Team 1" else if [CSI] = #text(Jackson - Michael) else "Team2"
1 Answer
Reset to default 1Multiple IFs are rarely a good idea, you could try the following:
= if List.Contains({"Doe - John", "Sanders - Colonel", "Jackson - Michael"}, [CSI])
then "Team 1"
else "Team 2"
本文标签: powerqueryMultiple IF Statements in Power Query (PowerBI) quotIfThenOtherwisequotStack Overflow
版权声明:本文标题:powerquery - Multiple IF Statements in Power Query (PowerBI) "IfThenOtherwise" - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743743411a2531312.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论