The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi Folks,
I have a column name e1subclass
How can I create the new Column msdclass with cases,
if e1subclass = BDEE, mdsclass = FABD
elseif e1subclass = BDAH, mdsclass = FABD
Solved! Go to Solution.
@YerlaSDU , Based on what I got a new column in dax
if([e1subclass] in {"BDEE", "BDAH"} , "FABD", [e1subclass] )
Hi @YerlaSDU ,
You can try this method:
MDS class = SWITCH(TRUE(), OR('Table'[E1 SubClass] = "BDEE",'Table'[E1 SubClass] = "BDAH"),"FABD")
The result is:
Hope this helps you.
Here is my PBIX file.
Best Regards,
Community Support Team _Yinliw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
86 | |
85 | |
35 | |
35 | |
35 |
User | Count |
---|---|
94 | |
79 | |
63 | |
55 | |
52 |