Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
sebastianslz
Frequent 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 than 0 and not on the total of all tickets.

I am using the Average function but it gets me the average of all tickets, I only need to get the average of tickets where their rating is greater than 0.

The following is a small example I created from the ticket table:

Ticket IDTechnicalCalification
10001Kevin0
10002Elsa0
10003Luke0
10004Bailey5
10005Billy2
10006Elsa4
10007Kevin5
10008Luke5
10009Luke5

 

1 ACCEPTED SOLUTION
LuizKoller
Resolver I
Resolver I

Hello!

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

View solution in original post

1 REPLY 1
LuizKoller
Resolver I
Resolver I

Hello!

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

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.