Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anika3186
Frequent Visitor

measure with a false/true filter doesn't work

Hello,
I want to create a YTD filter. This filter should be based on a measure (Highest Date = Max('Sales'[Date])

 

The YTD filter should therefore display "true" if the date from my sales file is less than or equal to the date from the measure.

I had created the following Dax formula as a calculated column:

 

YTD = IF (

(Datetable[Date])<=(Sales[Highest Date]),

TRUE (),

FALSE ()

)

 

Unfortunately, I only get "false" returned. What am I doing wrong? Can anyone help?

 

Many Thanks.

Anika

1 ACCEPTED SOLUTION
ValtteriN
Super User
Super User

Hi,

It is likely your Sales[Highest Date]  is returning BLANK in the column filter context. This happens e.g. for every date without sales if you have a relationship between the tables. To solve this you can use funtions like ALL or CROSSFILTER. e.g.

ValtteriN_0-1643662008974.png



ValtteriN_1-1643662049995.png


So a possible fix:

YTD = IF (

(Datetable[Date])<=CALCULATE(Sales[Highest Date]),ALL(Sales)),

TRUE (),

FALSE ()

)

 

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/







Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
ValtteriN
Super User
Super User

Hi,

It is likely your Sales[Highest Date]  is returning BLANK in the column filter context. This happens e.g. for every date without sales if you have a relationship between the tables. To solve this you can use funtions like ALL or CROSSFILTER. e.g.

ValtteriN_0-1643662008974.png



ValtteriN_1-1643662049995.png


So a possible fix:

YTD = IF (

(Datetable[Date])<=CALCULATE(Sales[Highest Date]),ALL(Sales)),

TRUE (),

FALSE ()

)

 

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/







Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors