Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |