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
dcadwallader
Helper I
Helper I

Percentage Calc Based on Three Values (Pass, Fail, Not Inspected)

Afternoon,

 

I'm looking to put a Pass Rate Calc in my file that will allow for three values in a single column - Pass, Fail and Not Inspected.

 

For example, lets say I have a sample of 150 cars; 50 of those cars passed inspection, 50 of those cars failed inspection and the remaining 50 were not inspected. As such, my pass rate on this is 50%.

 

I have the below DAX, which I assume should work;

 

Calc Inspection Result Pass Rate =
DIVIDE(
CALCULATE( COUNTROWS('EXTRACT') , 'EXTRACT'[Overall Result - Post Appeal] = "Pass" , COUNTROWS('EXTRACT') , 'EXTRACT'[Overall Result - Post Appeal] = "Fail") ,
CALCULATE( COUNTROWS('EXTRACT') , 'EXTRACT'[Overall Result - Post Appeal] = "Pass") ,
BLANK()
)

 

But I keep getting the below error message - The True/False expression does not specify a column. Each True/False expressions used as a table filter expression must refer to exactly one column.

 

Any ideas?

1 ACCEPTED SOLUTION
ValtteriN
Super User
Super User

Hi,

The problem is with the first calculate, since it has two different COUNTROWS. To solve this use OR in the filter like in this example:

Data:

ValtteriN_0-1641473680593.png


DAX:

Apples & Oranges =
DIVIDE(
CALCULATE(COUNTROWS(Applecount),Applecount[AppleCount]="Apple"),
CALCULATE(COUNTROWS(Applecount),or(Applecount[AppleCount]="Apple",Applecount[AppleCount]="Orange")),
BLANK()
)
 
End result:

ValtteriN_1-1641473728521.png


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





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

Proud to be a Super User!




View solution in original post

2 REPLIES 2
dcadwallader
Helper I
Helper I

Excellent stuff - cheers mate

ValtteriN
Super User
Super User

Hi,

The problem is with the first calculate, since it has two different COUNTROWS. To solve this use OR in the filter like in this example:

Data:

ValtteriN_0-1641473680593.png


DAX:

Apples & Oranges =
DIVIDE(
CALCULATE(COUNTROWS(Applecount),Applecount[AppleCount]="Apple"),
CALCULATE(COUNTROWS(Applecount),or(Applecount[AppleCount]="Apple",Applecount[AppleCount]="Orange")),
BLANK()
)
 
End result:

ValtteriN_1-1641473728521.png


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





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