I want to calculate the average scores of students exclude the scores that are zero
measure= calculate(average(table[score]),filter(table, table[score]<>0))
And I want to compare the measure by selecting student against the slicer
ew measure= calculate(average(table[score]),all(table[student]),filter(table, table[score]<>0))
How can use the new measure in the score and ignore the slicer