The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.