Forum Discussion
Anonymous
7 years agoNot applicable
Average with conditional statement
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
- 7 years ago
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 )
AlB
7 years agoCommunity Champion
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 )
Anonymous
7 years agoNot applicable
It works, thank you so much.