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
Anonymous
Not applicable

Calculating pass or fail

123.PNGI would like to know how to calculate pass or fail for each student if they have taken both the courses. I have a measure on grade as the grades could be A,B,C or S for passing. Each student will have two or less rows based on number of courses taken.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thanks for your reply. I didn't try your method but I wrote a calculated column to decide Pass or Fail using SQL query and used below measure

GR = if(COUNTROWS(filter(ALL(COURSES),and(COURSES[COURSE_NAME]="CECZS-769", AND( COURSES[Pass_Fail] ="P",COURSES[PERSON_ID]=SELECTEDVALUE(COURSES[PERSON_ID])))))>0,"Pass","Not_Finished")

View solution in original post

2 REPLIES 2
v-kkf-msft
Community Support
Community Support

Hi @Anonymous ,

 

If you want to count the number of courses passed per student, please try the following Measure1.

 

Measure1 = 
CALCULATE ( COUNTROWS ( 'Table' ), 'Table'[GRADE] IN { "A", "S", "B", "C" } )


If you want to count the number of students who passed both courses, please try the following Measure2.

 

Measure2 = 
CALCULATE (
    DISTINCTCOUNT ( 'Table'[STUDENT ID] ),
    FILTER ( VALUES ( 'Table'[STUDENT ID] ), [Measure1] = 2 )
)

vkkfmsft_0-1656554077020.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Thanks for your reply. I didn't try your method but I wrote a calculated column to decide Pass or Fail using SQL query and used below measure

GR = if(COUNTROWS(filter(ALL(COURSES),and(COURSES[COURSE_NAME]="CECZS-769", AND( COURSES[Pass_Fail] ="P",COURSES[PERSON_ID]=SELECTEDVALUE(COURSES[PERSON_ID])))))>0,"Pass","Not_Finished")

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