Forum Discussion
Learn2Share
3 years agoFrequent Visitor
How to replace column values using DAX measure?
Hi, Is it possible to change column values using dax measure (no option to modify power query/tranform data option, no option to create a calculated column as Powerbi is connected to AAS live con...
- 3 years ago
Try this measure:
Output Value = SWITCH ( MAX ( Table1[Existing Field Values] ), 1, "P1", 2, "P2", 3, "P3", BLANK (), "Other" )
Learn2Share
3 years agoFrequent Visitor
thank you DataInsights , this works!