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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Guys,
I have this table, and I want to calculate the average of results passed (so calculating only results >=5.5) and then show it for each course.
plz help
Solved! Go to Solution.
Hi @Anonymous
Try this, where Table1 is the table you show
1. Place Table1[Course] in the rows of a matrix visual
2. Create this measure and place it in vlaues of the matrix visual:
Measure = CALCULATE ( AVERAGE ( Table[result] ), Table[result] >= 5.5 )
Hi @Anonymous
Try this, where Table1 is the table you show
1. Place Table1[Course] in the rows of a matrix visual
2. Create this measure and place it in vlaues of the matrix visual:
Measure = CALCULATE ( AVERAGE ( Table[result] ), Table[result] >= 5.5 )
It works, thank you so much.