March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
Solved! Go to Solution.
Hi @mattthew ,
Create a column similarly as below:
maxyear = MAXX(ALL(Table8a),'Table8a'[Year])
And you will see:
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.
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!
Hi @mattthew ,
Create a column similarly as below:
maxyear = MAXX(ALL(Table8a),'Table8a'[Year])
And you will see:
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.
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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
82 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |