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

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

Reply
Nagin
Frequent Visitor

Countrows ALL

Hi All,

 

I am trying to create a measure to countrows and ignore all slicer filters, to enable me to calculate a % rate, so for example in the image below, the % calculation is working fine as no provider is selected.

 

Nagin_0-1661421995481.png

However once I select a provider the 'STC All incidents' column gets filtered to that particular provider and I get a 100% rate

Nagin_1-1661422113109.png

Is there a way that I can count all incidents when a provider is selected, e.g for the selected provider for June 22 should be 3111/14072 to get the provider rate.

 

I have used the following measure to calculate all incidents

 

STC ALL Incidents = CALCULATE(
COUNTROWS(EMAS),EMAS[EMAS Call Connect Date],
ALL(EMAS[Provider Code]))

 

Thanks

 

Nagin

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

Hi @Nagin ,

 

Based on your description, I have created a simple sample:

vjianbolimsft_0-1661927058145.png

Please try:

ALL = COUNTROWS(FILTER(ALL('Table'),'Table'[MonthAndYear]=MAX('Table'[MonthAndYear])))

Percentage = DIVIDE(COUNTROWS('Table'),[ALL])

Final output:

vjianbolimsft_1-1661927140646.png

vjianbolimsft_2-1661927159240.png

Best Regards,

Jianbo Li

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

2 REPLIES 2
v-jianboli-msft
Community Support
Community Support

Hi @Nagin ,

 

Based on your description, I have created a simple sample:

vjianbolimsft_0-1661927058145.png

Please try:

ALL = COUNTROWS(FILTER(ALL('Table'),'Table'[MonthAndYear]=MAX('Table'[MonthAndYear])))

Percentage = DIVIDE(COUNTROWS('Table'),[ALL])

Final output:

vjianbolimsft_1-1661927140646.png

vjianbolimsft_2-1661927159240.png

Best Regards,

Jianbo Li

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

 

ValtteriN
Super User
Super User

Hi,

I am not sure I follow but here are a few examples:

Data:

ValtteriN_0-1661424117747.png

 


ALL rows of a table:

Measure 19 = COUNTROWS(ALL(Category))

rows of all selected:

Measure 20 = COUNTROWS(Category)

Percentage is just DIVIDE([m 20], [m 19])

End result:
ValtteriN_1-1661424422098.png

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/







Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.