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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Kohrinn
Helper I
Helper I

Average of distinct values

Hi,

I'm struggling with a simple problem (or so I though).  I have values like this:

Kohrinn_0-1695973139525.png

What I want to do is to count the average duration for each batch. That means that I have to take unique values of duration to my calculation. 

I tried at first:

AVERAGE(CIP_ReportData[BatchDuration Seconds])

 Which is obviously wrong - it calculated the average from all the durarion values (as in red). Then I did:

AVERAGE(DISTINCT(CIP_ReportData[BatchDuration Seconds]))

But this gave me an error from AVERAGE function. So I tried:

AVERAGEX(CIP_ReportData,CALCULATE(DISTINCT(CIP_ReportData[BatchDuration Seconds])))

But it gave me a result like this one in red, again.

 

How to selved it correctly? I was looking through similar problems solved on this forum, but none of them helped in my case...

 

Thanks,

Joanna

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Kohrinn , Try like

AVERAGEX(Summarize(CIP_ReportData,CIP_ReportData[UniqueBatch] , CIP_ReportData[BatchDuration Seconds]), [BatchDuration Seconds] )

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Kohrinn , Try like

AVERAGEX(Summarize(CIP_ReportData,CIP_ReportData[UniqueBatch] , CIP_ReportData[BatchDuration Seconds]), [BatchDuration Seconds] )

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Perfect! Thank you!

CoreyP
Solution Sage
Solution Sage

Are there other fields in your dataset that is causing the duplication of rows? All the values in BatchDuration are the same for each UniqueBatch ID. So, the average of all the duration values per Batch would be the same value. What is your expected result for each of the above shown UniqueBatch IDs?

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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