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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
osura_perera
New Member

Finding the bottom two numbers in a mesaure

Hi, 

I have a measure calculating an average score for few a criteria-based items. I want to find the two worst numbers and return the heading it belongs. There are four buckets and four items per bucket. It should keep the filter on the main bucket. 

for example bucket 1 worst two areas in performance are service catalogue and simplicity to log a ticket. 

 

osura_perera_0-1637604108927.png

The values and the measurement are coming from a single table. 

In the common table, 

 

| Bucket 1 a | Bucket 2 a |

| Bucket 1 a | Bucket 2 b |

| Bucket 1 a | Bucket 2 c |

| Bucket 1 a | Bucket 2 d |     

| Bucket 1 b | Bucket 2 a |

| Bucket 1 b | Bucket 2 b |

| Bucket 1 b | Bucket 2 c |

| Bucket 1 b | Bucket 2 d |

 

 

 

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

Hi @osura_perera ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

1. Create a measure as below to get the rank value per bucket base on the average value

 

Rank = 
IF (
    ISINSCOPE ( 'Table'[Items] ),
    RANKX (
        CALCULATETABLE ( VALUES ( 'Table'[Items] ), ALLSELECTED ( 'Table'[Items] ) ),
        [Average value],
        ,
        ASC,
        DENSE
    )
)

 

2. Apply a visual-level filter with condition: Rank <=2

yingyinr_0-1637828276950.png

You can also refer the following blog to achieve it.

Filtering the Top 3 products for each category in Power BI

Best Regards

Community Support Team _ Rena
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-yiruan-msft
Community Support
Community Support

Hi @osura_perera ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

1. Create a measure as below to get the rank value per bucket base on the average value

 

Rank = 
IF (
    ISINSCOPE ( 'Table'[Items] ),
    RANKX (
        CALCULATETABLE ( VALUES ( 'Table'[Items] ), ALLSELECTED ( 'Table'[Items] ) ),
        [Average value],
        ,
        ASC,
        DENSE
    )
)

 

2. Apply a visual-level filter with condition: Rank <=2

yingyinr_0-1637828276950.png

You can also refer the following blog to achieve it.

Filtering the Top 3 products for each category in Power BI

Best Regards

Community Support Team _ Rena
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! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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