Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello everyone,
I have daily data of received calls with date, day and time.
I try to make a matrix that calculates the average of number of calls received per day and per hour
I have the number of calls received = count(Mytable['DATE'])
But I can't get the average for each value by hour and day
Could someone tell me what I am missing to make the average work?
Thank's in advance,
bof,
Solved! Go to Solution.
Finally the answer was much simpler than that just by calculating the measure in this way:
measure = count(Mytable['DATE'])/ DISTINCTCOUNT(Mytable['DATE'])
Finally the answer was much simpler than that just by calculating the measure in this way:
measure = count(Mytable['DATE'])/ DISTINCTCOUNT(Mytable['DATE'])
@SoufTC This looks like a measure aggregation problem. See my blog article about that here: https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
The pattern is:
MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
etc.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
27 |
User | Count |
---|---|
92 | |
50 | |
44 | |
40 | |
35 |