The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
There are data clean up required. I want to replace the status in the column "return reason" from FPC to FPR where the column "Model" is equal to "S123". Any advice?
Solved! Go to Solution.
@Anonymous , A new column in DAX
if([return reason] = "FPC" && "Model" = "S123" , "FPR", [return reason] )
Hi, @Anonymous ;
Such as amitchandak said ,you could use replace value.
and if you want to change a column and don't want to add a new column, may be you must complete it in power query.
One method is replace the value;
Another method is add a condition column then delete the original column.
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Creating a new column is not my plan.
@Anonymous , Then you need to do it power query , refer
User | Count |
---|---|
15 | |
11 | |
8 | |
8 | |
7 |
User | Count |
---|---|
21 | |
20 | |
11 | |
10 | |
7 |