Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
niko18033
Helper I
Helper I

Measure to find average count by hour by day of week

I'm trying to write a DAX measure to find the average count for a given hour on a given weekday. I plan on using this to compare current volume (most recent complete hour) to the expected volume (average for that particular hour on that particular weekday). For example, I'd like to compare volume for 9:00 am on Monday to all of the 9:00 am hours only for Mondays in the dataset.

 

I've tried writing some variations of ALL and ALLEXCEPT but have not been able to figure it out so far. I need this figure to be fixed as it will compare current hour by the average for that hour on that day of the week.  Any assistance would be much appreciated!

 

Here is the format of the data. I just put a placeholder formula on Average which divides count by 13, since that's the approximate number of weeks in my data currently.

 

Volume by Day by Hour.png

1 REPLY 1
Fowmy
Super User
Super User

@niko18033 

Try the following measure, replace the table name as per your model

 

Average M = 

VAR _Hour = SELECTEDVALUE(Table8[Start of Hour])
VAR _Day = SELECTEDVALUE(Table8[Day Name])
VAR _Average = 
    AVERAGEX(
        FILTER(ALL(Table8), Table8[Day Name] = _Day && Table8[Start of Hour] = _Hour ),
        Table8[Count]
    )
VAR _Current = SUM(Table8[Count])

Return

_Current  - _Average

 

________________________

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 🙂

YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors