Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

DAX Measure error

Hi Experts   Getting an error on the following measure - cannot work it out. Escalated = IF(VALUE(Complaints[Escalated Complaint] = 1 || [Escalated Complaint] = 0) && Complaints[Category] = "Comp...
  • mh2587's avatar
    2 years ago
    Escalated = //Try this one
    IF (
        (VALUE(Complaints[Escalated Complaint]) = 1 || VALUE(Complaints[Escalated Complaint]) = 0)
            && Complaints[Category] = "Compliant",
        "Yes",
        "No"
    )