If I have a table of numbers, called scores: 1...10. They are in the data set called Tests.
I have the following calculated fields:
Count Tests:=COUNTROWS(Tests) ... =10
Average Tests:=AVERAGE(Tests[Scores]) ... 5.5
Count Tests Above Average:=CALCULATE([Count Tests],Tests[Scores]>5.5) ... 5
All good so far, but if I change the last calculated field:
Count Tests Above Average 2:=CALCULATE([Count Tests],Tests[Scores]>[Average Tests]) ... I get an error message.
Is there an easy solution to this?
Thank you!
I have the following calculated fields:
Count Tests:=COUNTROWS(Tests) ... =10
Average Tests:=AVERAGE(Tests[Scores]) ... 5.5
Count Tests Above Average:=CALCULATE([Count Tests],Tests[Scores]>5.5) ... 5
All good so far, but if I change the last calculated field:
Count Tests Above Average 2:=CALCULATE([Count Tests],Tests[Scores]>[Average Tests]) ... I get an error message.
Is there an easy solution to this?
Thank you!