Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
My very first question, new to Power Bi. I am trying to find the way to create new measure or new column called "NewProduct" using text values from the existing column. So I tried to use simple If statement to select yellow values and name them "ProductA", and select several other blue highlighted values as "ProductB", and ignore the rest of the values in the existing column, but could not find dax expression for it. So what is the best way to use these parameters from my existing column to create new values in a new column. Much apprecite any help.
Solved! Go to Solution.
Hi @Mk60,
I'd recommend you to check the SWITCH function.
You could do something like this:
In plain text:
Calculated Column =
SWITCH ( TRUE (),
[Value] IN { "CC-20b", "CC-50b", "CC-50d", "CC-50n" }, "Product A",
[Value] IN { "83", "888", "98", "CC-75" }, "Product B",
BLANK () )
Best Regards,
Alexander
So happy to receive my very first reply with a great DAX suggestion that worked for me! Thanks so much, Alexander! Greatly apprecite your time and consideration to respond to a brand new user 🙂
Hi @Mk60,
I'd recommend you to check the SWITCH function.
You could do something like this:
In plain text:
Calculated Column =
SWITCH ( TRUE (),
[Value] IN { "CC-20b", "CC-50b", "CC-50d", "CC-50n" }, "Product A",
[Value] IN { "83", "888", "98", "CC-75" }, "Product B",
BLANK () )
Best Regards,
Alexander
So happy to receive my very first reply with a great DAX suggestion that worked for me! Thanks so much, Alexander! Greatly apprecite your time and consideration to respond to a brand new user 🙂
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
86 | |
82 | |
70 | |
49 |
User | Count |
---|---|
143 | |
122 | |
109 | |
60 | |
55 |