Forum Discussion

sure19's avatar
sure19
Helper II
6 years ago
Solved

Condition column

Dear All,  I have a column where i have a list of countries,  another column for date and then the values etc.  But for some countries i do not want to show the data after certain month and date.  fo...
  • ibarrau's avatar
    6 years ago

    Hi there two ways to ask for more than 1 condition in DAX. You can try both:

    First

     

    IF(
        AND ( Condition1, Condition2 ),
        TRUE(),
        FALSE()
    )

     

    Second

     

    IF(
        Condition1 && Condition2,
        TRUE(),
        FALSE()
    )

     

     Hope this Helps,

    Regards,