Forum Discussion
sebastianslz
3 years agoFrequent Visitor
How to get the rating average
I need to obtain the average of grades that have been assigned to the technicians who have solved ticket, the problem I have is that I only need to obtain the average of grades where they are greater...
- 3 years ago
Hello!
AVERAGEX(FILTER('Table','Table'[Calification] > 0),'Table'[Calification])
LuizKoller
Resolver I
3 years agoHello!
AVERAGEX(
FILTER(
'Table',
'Table'[Calification] > 0
),
'Table'[Calification]
)