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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

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] )

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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] )

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.