Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Anonymous
Not applicable

Calculated Column for Assigning Quintiles

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. 

sarah99_0-1702482521389.png

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. 

sarah99_1-1702482719900.png

Would be grateful if someone can help me do this

 

1 ACCEPTED SOLUTION
v-xinruzhu-msft
Community Support
Community Support

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

vxinruzhumsft_2-1702609214015.png

I create the same measures as yours

vxinruzhumsft_3-1702609226076.png

Then create two table, one is quintile level table another is the country table

vxinruzhumsft_5-1702609313392.png

vxinruzhumsft_6-1702609323954.png

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

vxinruzhumsft_7-1702609478315.png

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.

 

 

 

 

View solution in original post

1 REPLY 1
v-xinruzhu-msft
Community Support
Community Support

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

vxinruzhumsft_2-1702609214015.png

I create the same measures as yours

vxinruzhumsft_3-1702609226076.png

Then create two table, one is quintile level table another is the country table

vxinruzhumsft_5-1702609313392.png

vxinruzhumsft_6-1702609323954.png

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

vxinruzhumsft_7-1702609478315.png

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.

 

 

 

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors