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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors