Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I'm struggling with a simple problem (or so I though). I have values like this:
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
Solved! Go to Solution.
@Kohrinn , Try like
AVERAGEX(Summarize(CIP_ReportData,CIP_ReportData[UniqueBatch] , CIP_ReportData[BatchDuration Seconds]), [BatchDuration Seconds] )
Perfect! Thank you!
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?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |