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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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
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.