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
mattthew
Frequent Visitor

Shape Map Legend Latest Year

I have a county shape map with a legend by year.  A county can have multiple values from different years (2016, 2017, 2018, 2019, etc).  How can I have the map show the latest year color?  It seems to color code based on the earliest year from what I can tell.  Thanks. 

2 ACCEPTED SOLUTIONS
v-kelly-msft
Community Support
Community Support

Hi @mattthew ,

 

Create a column similarly as below:

maxyear = MAXX(ALL(Table8a),'Table8a'[Year])

And you will see:

 

vkellymsft_2-1626330270573.png

 

For my sample .pbix file,pls see attached.

 

 

Best Regards,
Kelly

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

View solution in original post

Hi @v-kelly-msft , thanks for the reference.  This put me down a path of reviewing maxx and it looked like what I was seeking blogenterprisedna had documentation for.  

 

https://blog.enterprisedna.co/using-the-maxx-dax-function-in-power-bi-to-calculate-recent-values-in-...

 

For those not wanting to click on the url the solution is:

Max Date = 

VAR CurrentName = 'Dataset'[Name] 

 

RETURN

MAXX(

   FILTER( ALL('Dataset'), 'Dataset'[Name] = CurrentName ) , 

     'Dataset'[Date Taken]')

 

Then placing Max Date in the legend.  

 

Thanks Again!

View solution in original post

2 REPLIES 2
v-kelly-msft
Community Support
Community Support

Hi @mattthew ,

 

Create a column similarly as below:

maxyear = MAXX(ALL(Table8a),'Table8a'[Year])

And you will see:

 

vkellymsft_2-1626330270573.png

 

For my sample .pbix file,pls see attached.

 

 

Best Regards,
Kelly

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

Hi @v-kelly-msft , thanks for the reference.  This put me down a path of reviewing maxx and it looked like what I was seeking blogenterprisedna had documentation for.  

 

https://blog.enterprisedna.co/using-the-maxx-dax-function-in-power-bi-to-calculate-recent-values-in-...

 

For those not wanting to click on the url the solution is:

Max Date = 

VAR CurrentName = 'Dataset'[Name] 

 

RETURN

MAXX(

   FILTER( ALL('Dataset'), 'Dataset'[Name] = CurrentName ) , 

     'Dataset'[Date Taken]')

 

Then placing Max Date in the legend.  

 

Thanks Again!

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.