Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi All,
I am trying to add a new column to take a "product" and add a "Category", there can be up to 10 product names in each category.
I wanted to use IF ([Product]= "option 1" or "option 2" or "option 3" etc , "Category 1", IF ([Product]= "option 6" or "option 7" or "option 8 " etc, "Category 2", IF ([Product] = "option 14" or "option 16" or "option 20" or "option 12", "Category 3", "no category")))
However this doesn't work, I'm sure there is a better way to achieve what I'm looking for, your help is greatly appreciated.
Thanks
Steve
Solved! Go to Solution.
IF ( [Product] = "option 1" || [Product] = "option 2" || [Product] = "option 3" , "Category 1", IF ( [Product] = "option 6" || [Product] = "option 7" || [Product] = "option 8 " , "Category 2", IF ( [Product] = "option 14" || [Product] = "option 16" || [Product] = "option 20" || [Product] = "option 12", "Category 3", "no category")))
Could you show your raw data and your expected result?
This is what I see
Ok, in every OR you must use [Product]="VALUE". Try it please.
I still get an error, should I have additional parentheses?
Replace "or" with "||"
thats got it, thanks 🙂
This is right, &&= AND and ||=OR
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 25 |