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
bpsearle
Resolver II
Resolver II

Problem with dynamic filters

Hi all,

I'm trying to create a dynamic filter that works with a measure but can't get it working. I've put together a test jig to show the problem

 

Any help will be gratefully received

 

Thanks, Brian

 

Example.jpg

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

Try

Measure 3 = 
VAR __date = MAX ( Table1[DATE] )
VAR __city = CALCULATE ( MAX( Table1[CITY]), ALLSELECTED ( Table1 ),  Table1[DATE] = __date ) 
RETURN CALCULATE ( [M Score] ), VALUES ( Table1[CITY] ), Table1[CITY] = __city, Table1[DATE] = __date )

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges

Connect on Linkedin

View solution in original post

Hi @amitchandak 

Well done and thank you.

Playing around with the code I found I didn't need the reference to City and the cause of the problem was that I needed to have the 'latest visit date' not as a separate measure but as a variable in the main measure. Not sure I fully understand this yet, need to do some more experimenting!

Thanks

Brian

View solution in original post

4 REPLIES 4
PaulDBrown
Community Champion
Community Champion

@bpsearle 

Try:

M latest score =

CALCULATE ([M score],
FILTER(ALL(table1),

table1[date] = [M latest visit]))





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Hi @PaulDBrown 

Thank you for your reply.

This didn't work. It seems to be something to do with the latest visit date being a separate measure, if it's a variable in the main measure it works.

Thanks, Brian

amitchandak
Super User
Super User

Try

Measure 3 = 
VAR __date = MAX ( Table1[DATE] )
VAR __city = CALCULATE ( MAX( Table1[CITY]), ALLSELECTED ( Table1 ),  Table1[DATE] = __date ) 
RETURN CALCULATE ( [M Score] ), VALUES ( Table1[CITY] ), Table1[CITY] = __city, Table1[DATE] = __date )

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges

Connect on Linkedin

Hi @amitchandak 

Well done and thank you.

Playing around with the code I found I didn't need the reference to City and the cause of the problem was that I needed to have the 'latest visit date' not as a separate measure but as a variable in the main measure. Not sure I fully understand this yet, need to do some more experimenting!

Thanks

Brian

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.