Forum Discussion
AbhishekAejae
2 years agoRegular Visitor
DAX Support
I'm new to Power BI andlooking for help mentioned below, In the below query, I have one more condition to be added in that which goes like, Need to add this to the below query: If Escalation Re...
- 2 years ago
Created & Resolved = switch( TRUE(), [Escalation Record Status] IN {"Closed Deescalated","Closed Complete"} && [Parent Ticket State] IN {"open","Work In Progress","pending","assigned"},"Resolved", [Parent Ticket State] IN {"open","Work In Progress","pending","assigned"},"Created", [Escalation Record Status] IN {"open","Work In Progress"}, "open", "Created" )
lbendlin
2 years agoSuper User
Created & Resolved = switch( TRUE(),
[Escalation Record Status] IN {"Closed Deescalated","Closed Complete"}
&& [Parent Ticket State] IN {"open","Work In Progress","pending","assigned"},"Resolved",
[Parent Ticket State] IN {"open","Work In Progress","pending","assigned"},"Created",
[Escalation Record Status] IN {"open","Work In Progress"}, "open",
"Created"
)