Forum Discussion

sebastianslz's avatar
sebastianslz
Frequent Visitor
3 years ago
Solved

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...
  • LuizKoller's avatar
    3 years ago

    Hello!

    AVERAGEX(
        FILTER(
            'Table',
            'Table'[Calification] > 0
        ),
        'Table'[Calification]
    )