Forum Discussion
DAsilar
4 years agoNew Member
Average without Filter context
Hi. Im trying to create a measure (average of grading), with has filter context with the classes(Math, history, geographics), but doesnt change when i filter a student name. My tablle have the F...
- 4 years ago
Hi DAsilar
Try to use the REMOVEFILTERS DAX function to create a measure, something like this:
Average = CALCULATE( AVERAGE( table[Test_grading] ), REMOVEFILTERS( table[Students name] ) )If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
VahidDM
4 years agoSuper User
Hi DAsilar
Try to use the REMOVEFILTERS DAX function to create a measure, something like this:
Average =
CALCULATE(
AVERAGE( table[Test_grading] ),
REMOVEFILTERS( table[Students name] )
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
DAsilar
4 years agoNew Member
Thanks, It was exactly what i need.
Works perfectly.