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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
DarylM
Helper II
Helper II

Count Distinct Items Ranked Less than 5

Hello, 

I have a project where I need to count the number of items where the Rank is less than or equal to 5. 

Using RANKX I created a ranking for each item, but for the life of me have not been able to figure out how to count the item numbers that rank less than or equal to 5. 

 

Below in the Rank <5 field is my desired effect if it can be achived. 

 

Thanks!

2019-10-14 13_19_13-Window.png

1 ACCEPTED SOLUTION
v-joesh-msft
Solution Sage
Solution Sage

Hi @DarylM ,

You can try the following measure:

item #'s less than or equal to 5 =
VAR __rank =
    ADDCOLUMNS ( 'Table', "rank", [Rankx Measure] )
RETURN
    CALCULATE ( DISTINCTCOUNT ( 'Table'[Item #] ), FILTER ( __rank, [rank] <= 5 ) )

Results are as follows:

1.PNG

Here is a demo, you can try it:

https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EUUOKDmzbrdFt6VWPB...

Best Regards,

Community Support Team _ Joey
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

3 REPLIES 3
v-joesh-msft
Solution Sage
Solution Sage

Hi @DarylM ,

You can try the following measure:

item #'s less than or equal to 5 =
VAR __rank =
    ADDCOLUMNS ( 'Table', "rank", [Rankx Measure] )
RETURN
    CALCULATE ( DISTINCTCOUNT ( 'Table'[Item #] ), FILTER ( __rank, [rank] <= 5 ) )

Results are as follows:

1.PNG

Here is a demo, you can try it:

https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EUUOKDmzbrdFt6VWPB...

Best Regards,

Community Support Team _ Joey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

AlB
Community Champion
Community Champion

Hi @DarylM 

If 'Rank<5'  is a calculated column you could place this measure in a card visual:

Measure =
CALCULATE ( DISTINCTCOUNT ( Table1[Item #] ), Table1[Item #] <= 5 )

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

 

Hi Thanks!

Sorry, I realized that I should have made my comments clearer. 

The example I just created in Excel to show what I am looking for. The RANKX is a measure in Power BI and I a trying to create a measure that will count the item #'s less than or equal to 5. 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors