Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register 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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 43 | |
| 39 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 67 | |
| 66 | |
| 31 | |
| 28 | |
| 24 |