cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
sure19
Helper II
Helper II

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.  for example

 

before 2019  all country data to be shown,   total countries  = 70

after June 2019 show all data except one country , now new total countries  = 69

and again after  Dec 2019 do not show one more country , now the final country list = 68

how do i do this, tried conditional column but it only allows me one condition.  i need to specify, if month year >= 2019 then show all country, and if month year june 2019 >= june then show all but one, etc.

1 ACCEPTED SOLUTION
ibarrau
Super User
Super User

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,


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Here's one way you can restrict measures to certain dates for each individual country without too much work.

 

Best

D

ibarrau
Super User
Super User

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,


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

Anonymous
Not applicable

@ibarrau, wanted to bring your attention to the fact that:

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

is exactly the same as

AND ( Condition1, Condition2 )

The second IF is exactly the same.

 

Therefore there's no point doing what you've suggested. Worse, it's more obscure and harder to understand at a glance than the plain and simple expression on its own.

 

Best

D

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors
Top Kudoed Authors