Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
How could I solve this problem
I have a Matrix Table showing the Day of the Week and Time by Hour
I have Count of Values , but if I broaden up the time frame mroe than a week , then my Values will just increase
I would rather know the averages, I tried to do a quick measure
Count of number average per SOH =
AVERAGEX(
KEEPFILTERS(VALUES('emmain'[SOH])),
CALCULATE(COUNTA('emmain'[number]))
)
And applies that measure as the values on another matrix table , but all it appears to be doing is summing the totals.
How could I do this correctly ?
Thanks
-Brad
Solved! Go to Solution.
Hi @bcampbell ,
Try
Count of number average per SOH =
AVERAGEX ( ALLEXCEPT ( emmain, emmain[SOH] ), COUNTA ( emmain[number] ) )
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @bcampbell ,
Could you tell me if your problem has been solved?
If it is, kindly Accept it as the solution. More people will benefit from it.
Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.
Best Regards,
Stephen Tao
Hi @bcampbell ,
Try
Count of number average per SOH =
AVERAGEX ( ALLEXCEPT ( emmain, emmain[SOH] ), COUNTA ( emmain[number] ) )
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.