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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
kodrutz
Regular Visitor

Determine average by month average

Hy guys,

 

I am pretty new to DAX and I`m struggling with some of my data.

 

I have the following table:

 

Tabel date.png

 

The table contains records from 2013 up to now.

I need to determine the average mileage per month per vehicle.

SUM of ( ( Total KMs in month ) / ( Number of distinct vehicles in month ) ) / Total number of months.

 

I managed to determine the values using ca new DAX table and then creating a measure based on that, but the values don`t filter when I select the Brand or the Type.

 

The ideea is that I need to be able to see the average mileage of the entire fleet, but also slice the data by Brand or Type.

 

I would really appreciate some help on this.

 

Thanks.

 

1 ACCEPTED SOLUTION
kodrutz
Regular Visitor

Hi Angelia,

 

Thanks a lot for your help.

It wasn’t exactly the solution to my problem but you kind of pointed me in the right direction.

 

In the end I figured out how to obtain the results with a combination of measures.

 

Ashish, thanks for taking the time. Man Wink

View solution in original post

3 REPLIES 3
kodrutz
Regular Visitor

Hi Angelia,

 

Thanks a lot for your help.

It wasn’t exactly the solution to my problem but you kind of pointed me in the right direction.

 

In the end I figured out how to obtain the results with a combination of measures.

 

Ashish, thanks for taking the time. Man Wink

Ashish_Mathur
Super User
Super User

Hi,

 

Share the link from where i can download your file.  Also, show the expected result there.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @kodrutz,

You use the brand column to calculate the distinct vehicles? If it is, you should create a month column by creating calculated column.

Month=Format(Table[Date],"YYYY-MMM")


Then you can create a measure using the formula below.



Average =
DIVIDE (
    CALCULATE ( SUM ( Table[mile age] ), ALLEXCEPT ( Table, Table[month] ) ),
    CALCULATE ( DISTINCTCOUNT ( Table[brand] ), ALLEXCEPT ( Table, Table[month] ) )
)
    / CALCULATE ( DISTINCTCOUNT ( Table[month] ), ALL ( Table ) )


If this still can't resolve your issue, please give reponse for further analysis. And you'd better share the sample table in table format rather than screenshot.


Best Regards,
Angelia

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors