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
nhmpp
Helper I
Helper I

Averaging a count by weekday and hour

Hello- I am having some trouble getting an accurate average to show up in a matrix when averaging by weekday and hour from a separate datetime table.

 

I have query 1 which is lots of rows with starts at datetime and expires at datetime. I have created a matrix like this that shows how many rows are active during the differnet date/hour combinations, and this works great:

nhmpp_0-1669657529866.png

It uses a measure I am called "MatchCount" 

 

 

MatchCount = CALCULATE(
DISTINCTCOUNT(Query1[order_number_id]), FILTER(Query1, Query1[starts_at_in_time_zone] <= MAX('DateTime'[DateTime]) && Query1[expires_at_in_time_zone] > MAX('DateTime'[DateTime])))

 

 

When I try to average what shows here by the different days of the week instead of specific dates, I cannot seem to create any measure that accurately does this. The one I am working with now shows like this:

nhmpp_1-1669657639666.png

And you can see the values are way too high and do not appear to be averaging since there are no decimal numbers. I am calling the current measure shown here "Wkdy Avg 2": 

 

 

Wkdy Avg 2 = 
CALCULATE(AVERAGEX(SUMMARIZE(DateTime, DateTime[Weekday], DateTime[Time], "Average", 'Query1'[MatchCount]), [Average]), ALLEXCEPT(DateTime, DateTime[Weekday], DateTime[Time]))

 

 

 

Here is a sample file with a very small amount of fake data that matches exactly what I am working with:

https://premiumparking-my.sharepoint.com/:u:/p/nmargavio/EfkzcV1A_1pIgEbN_KvERlQBOf7Ju5L6aI23R89lJWe...

 

I would appreciate any suggestions! I have tried just about everything I can think of. 

1 ACCEPTED SOLUTION
v-jialluo-msft
Community Support
Community Support

Hi @nhmpp ,

 

Please follow these steps:

(1) Create a new measure

 

MatchCount2 = 
COUNTROWS (
    GENERATE (
        SUMMARIZE (
            'Query1',
            [order_number_id],
            [starts_at_in_time_zone],
            [expires_at_in_time_zone]
        ),
        SUMMARIZE (
            FILTER (
                'DateTime',
                [DateTime] <= [expires_at_in_time_zone]
                    && [DateTime] >= [starts_at_in_time_zone]
            ),
            [DateTime]
        )
    )
)

 

(2)Final output

vjialluomsft_0-1669771825749.png

 

 

Best Regards,

Gallen Luo

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-jialluo-msft
Community Support
Community Support

Hi @nhmpp ,

 

Please follow these steps:

(1) Create a new measure

 

MatchCount2 = 
COUNTROWS (
    GENERATE (
        SUMMARIZE (
            'Query1',
            [order_number_id],
            [starts_at_in_time_zone],
            [expires_at_in_time_zone]
        ),
        SUMMARIZE (
            FILTER (
                'DateTime',
                [DateTime] <= [expires_at_in_time_zone]
                    && [DateTime] >= [starts_at_in_time_zone]
            ),
            [DateTime]
        )
    )
)

 

(2)Final output

vjialluomsft_0-1669771825749.png

 

 

Best Regards,

Gallen Luo

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you! This worked perfect!

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.