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
Hi,
I want to be able to assign quintiles to Geos based on their indicator value. I've created measures to calculate the percentiles and a measure to assign the quintile (QuintileColour); these work perfectly fine.
As I can't use measures as a legend for the Shape Map visual i'm using ,I would like to create a calculated column to assign the quintiles.
I tried using the same formula as the QuintileColour measure for the calculated column but it doesnt work, all values are assigned to the 1st quintile.
Would be grateful if someone can help me do this
Solved! Go to Solution.
Hi @Anonymous
Did you want to calculate counts of the quintile? If you want to achieve this,you can refer to the following sample .
Sample data
I create the same measures as yours
Then create two table, one is quintile level table another is the country table
Then create a measure
Counts =
COUNTROWS (
FILTER (
'Sample data',
[Country]
IN VALUES ( 'Country'[Country] )
&& [QuintileColour] IN VALUES ( 'Level'[Level] )
)
)
Put the measure and field of country table and the field of quintile level table to the visual.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Did you want to calculate counts of the quintile? If you want to achieve this,you can refer to the following sample .
Sample data
I create the same measures as yours
Then create two table, one is quintile level table another is the country table
Then create a measure
Counts =
COUNTROWS (
FILTER (
'Sample data',
[Country]
IN VALUES ( 'Country'[Country] )
&& [QuintileColour] IN VALUES ( 'Level'[Level] )
)
)
Put the measure and field of country table and the field of quintile level table to the visual.
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |