Forum Discussion
sure19
6 years agoHelper 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. fo...
- 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,
Anonymous
6 years agoNot applicable
Here's one way you can restrict measures to certain dates for each individual country without too much work.
Best
D