Reply
Thunders
Frequent Visitor

Counting ranks

Hi,

I have a table trying to count different attainments:

This is the table I have:

Rank
>75%
>75%
>75%
0%-25%
0%-25%
0%-25%
0%-25%
0%-25%
0%-25%
0%-25%
0%-25%
25%-50%
25%-50%
50%-75%
50%-75%
50%-75%
50%-75%
50%-75%
50%-75%

 

and this is the table I'm trying to get:

Rank>75%0%-25%25%-50%50%-75%
Count3826

 

How do I create a measure to accomplish that?

2 ACCEPTED SOLUTIONS
Thunders
Frequent Visitor

Thank you Jihwan,

Unfortunately that would not work for me, as I have other columns too.

Example:

Category   Achieved

A                   >75%

B                   >75%

C                   0%-25%

D                   0%-25%

E                    0%-25%

F                    25%-50%

H                    50%-75%

 

So I need to speciafy the column within the table

 



View solution in original post

avatar user
Anonymous
Not applicable

Hi @Thunders ,

Please use this DAX:

Measure = 
CALCULATE(
    COUNTROWS('Table'),
    ALLEXCEPT(
        'Table',
        'Table'[Rank]
    )
)

vjunyantmsft_0-1703577625781.png


If I add other columns:

vjunyantmsft_1-1703577654269.png


Best Regards,
Dino Tao
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
Thunders
Frequent Visitor

Thank you Jihwan,

Unfortunately that would not work for me, as I have other columns too.

Example:

Category   Achieved

A                   >75%

B                   >75%

C                   0%-25%

D                   0%-25%

E                    0%-25%

F                    25%-50%

H                    50%-75%

 

So I need to speciafy the column within the table

 



avatar user
Anonymous
Not applicable

Hi @Thunders ,

Please use this DAX:

Measure = 
CALCULATE(
    COUNTROWS('Table'),
    ALLEXCEPT(
        'Table',
        'Table'[Rank]
    )
)

vjunyantmsft_0-1703577625781.png


If I add other columns:

vjunyantmsft_1-1703577654269.png


Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1701497906188.png

 

 

COUNTROWS function (DAX) - DAX | Microsoft Learn

 

Count measure: = 
COUNTROWS('Table')

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
avatar user

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)