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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
kewaynes333
Helper I
Helper I

Average Agg Issue

Hi, 

 

I'm trying to get an average of daily transactions at 3 levels and am not sure how to do it.

 

Here is the sample data

kewaynes333_0-1656815375696.png

 

What I want to happen is to the average daily transactions aggregated based on the layer that the matrix is filtered at. But what I'm getting by using the Average function is the average at the transaction level.

 

When I simply use the Average function, this is what I get:

kewaynes333_1-1656815655181.png

 

But what I would actually want to see is (Bike for example):

 

1/1/22 : 105

1/2/22 : 76

1/3/22 : 103

 

I understand that simply using a SUM in this example would work, but there is a larger dataset I'm using and what to get rolling daily and weekly averages, so this is how I'll need it. 

 

Any help is appreciated!

 

 

 

 

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure whether I understood your question correctly, but please check the below picture and the attached pbix file.

 

Untitled.png

 

Expected measure = 
AVERAGEX (
    VALUES ( 'Product'[Caegory] ),
    CALCULATE ( SUM ( Sales[Quantity] ) )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

1 REPLY 1
Jihwan_Kim
Super User
Super User

Hi,

I am not sure whether I understood your question correctly, but please check the below picture and the attached pbix file.

 

Untitled.png

 

Expected measure = 
AVERAGEX (
    VALUES ( 'Product'[Caegory] ),
    CALCULATE ( SUM ( Sales[Quantity] ) )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors