Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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.
Solved! Go to Solution.
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
Proud to be a 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
Proud to be a Super User!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
55 | |
55 | |
36 | |
30 |
User | Count |
---|---|
79 | |
66 | |
45 | |
44 | |
42 |