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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Guys,
I am looking for a dax formula in which i can calculate average views based on hour and day.
My data set looks like this (below), so for avg views for hour 0 and day 1, it should be 50/3132. What formula works best for this?
Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
Try this:
Avg =
SUM ( 'Table'[Views] )
/ CALCULATE ( SUM ( 'Table'[Views] ), ALLEXCEPT ( 'Table', 'Table'[Day] ) )
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Try this:
Avg =
SUM ( 'Table'[Views] )
/ CALCULATE ( SUM ( 'Table'[Views] ), ALLEXCEPT ( 'Table', 'Table'[Day] ) )
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
DIVIDE (
COUNT( TABLE[VIEW] ),
CALCULATE(
COUNT( TABLE[VIEW] ),
ALLSELECTED(TABLE[HOURS])
)
)
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Sorry. This is not working.
@Anonymous
You need to share the formula you applied.
Can you share some sample data and the expected result to have a clear understanding of your question?
You can save your files in OneDrive, Google Drive, or any other cloud sharing platforms and share the link here.
____________________________________
How to paste sample data with your question?
How to get your questions answered quickly?
_____________________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 7 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |