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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Akilles
Regular Visitor

automatically filter latest date for each product/filtrar automaticamente data mais recente

Hello Community!
I have a list of several products where the most recent date is inserted. I would like the dashboard to filter each visual based on the most recent date based on each product.

Olá Comunidade!
eu tenho uma lista de varios produtos onde e inserido com a data mais recente. gostaria que baseado em cada produto o dashboard ja filtre-se cada visual baseado na data mais recente.

1 ACCEPTED SOLUTION
vanessafvg
Super User
Super User

create a new column

 

filter_most_recent_prod_update =
VAR prod =
SELECTEDVALUE ( 'table'[productname] )
VAR mx_date =
CALCULATE ( MAX ( 'table'[date] ), ALL ( table ), 'table'[productname] )
RETURN
IF ( 'table'[productname] = prod && 'table'[date] = mx_date, 1, 0 )

then filter on this column where = 1





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




View solution in original post

1 REPLY 1
vanessafvg
Super User
Super User

create a new column

 

filter_most_recent_prod_update =
VAR prod =
SELECTEDVALUE ( 'table'[productname] )
VAR mx_date =
CALCULATE ( MAX ( 'table'[date] ), ALL ( table ), 'table'[productname] )
RETURN
IF ( 'table'[productname] = prod && 'table'[date] = mx_date, 1, 0 )

then filter on this column where = 1





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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