Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi everyone
I would like to create 2 new columns from "success" and "failure
One column with "success" only
One column with "failure" only
@pro_x ,
In M
Success Column = if Table[Status] = "Success" then "Success"
Failure Column = if Table[Status] <> "Success" then "Failure"
or
Failure Column = if Table[Status] = "Failure" then "Failure"
in DAX
Success Column =IF(Table[Status] = "Success", "Success", BLANK())
Failure Column =IF(Table[Status] <> "Success"", "Failure", BLANK())
Hi @pro_x ,
Create 2 columns
Column Success=
IF(Table[Status] = "Success", "Success", BLANK())
Column Fail=
IF(Table[Status] = "Failure", "Failure", BLANK())
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |