Forum Discussion
wkelly1002
8 years agoFrequent Visitor
Need help with DAX equation
I am trying to create a calculated column with a DAX equation that checks a few columns for certain parameters. The first part is checking to see if "POE" is in the "POE Chargeable" column. If "P...
- 8 years ago
Hi,
Try using this DAX
IF('Active RCA Audit'[POE Chargeable]="POE", BLANK(),If(OR(SEARCH("Procedural",'Active RCA Audit'[DIRECT CAUSE],1,FALSE()),SEARCH("Procedural",'Active RCA Audit'[ROOT CAUSE],1,FALSE())),"Potential",BLANK()))
abbasabdulla
8 years agoFrequent Visitor
Hi,
Try using this DAX
IF('Active RCA Audit'[POE Chargeable]="POE",
BLANK(),If(OR(SEARCH("Procedural",'Active RCA Audit'[DIRECT CAUSE],1,FALSE()),SEARCH("Procedural",'Active RCA Audit'[ROOT CAUSE],1,FALSE())),"Potential",BLANK()))
- wkelly10028 years agoFrequent Visitor
That worked! Thank you