Forum Discussion

Bbrown44's avatar
Bbrown44
Advocate II
7 years ago
Solved

create a custom column with multiple or condition statement DAX

I am trying create a custom column with the follow DAX systax which is now working create a column with select if statement with multiple AND statements: Compliant Variable = IF([sesis_valid_subject] ...
  • v-danhe-msft's avatar
    7 years ago

    Hi Bbrown44,

    Could you have tried with AND function?

    See below picture and code, it could filter the right row:

    Column 2 = IF(AND('Table1'[Value]=2,AND(Table1[Running total]=37,AND([Column]=37,[Date]<>BLANK()))),"True")

     

    Regards,

    Daniel He