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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
grapple_75
Regular Visitor

Average Measure : matrix row and sub row calculation

Hi

 

I have a table which lists Vehicle Type, Vehicle Id, Date, Journey Id and Journey Duration.

Each Vehicle Id completes multiple journeys across multiple dates.

 

Screenshot 2024-12-18 161327.jpg

 

 

 

 

 

 

 

 

 

 

 

 

I am need a measure that not only calculates the Average Total Duration by Vehicle ID but also at the higher Vehicle Type level.

 

My matrix visual looks something like this.......

 

Screenshot 2024-12-18 162123.jpg

 

 

 

I know the issue relates to the count of distinct dates which at Vehicle Type level equals 3, the same as each Vehicle ID.  I need the measure to take into account the number of vehicle ids when calculating the average at Vehicle Type level.

 

Any help will be greatly appreciated. Thanks.

 

1 ACCEPTED SOLUTION
grapple_75
Regular Visitor

looks like I've now solved this using.....

 

Measure =
var _tbl1 = SUMMARIZE(Vehicle_Journey, Vehicle_Journey[vehicleId], Vehicle_Journey[StartDate],"a",sum(Vehicle_Journey[Journey Duration]))
var _average = averagex(_tbl1,[a])
return _average
 
have spent a whole day battling with this and then work it out within a few minutes of posting for help 🙄!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @grapple_75 ,

 

Thank you for sharing, this will help more people!!

 

 

Best regards,

Mengmeng Li

grapple_75
Regular Visitor

looks like I've now solved this using.....

 

Measure =
var _tbl1 = SUMMARIZE(Vehicle_Journey, Vehicle_Journey[vehicleId], Vehicle_Journey[StartDate],"a",sum(Vehicle_Journey[Journey Duration]))
var _average = averagex(_tbl1,[a])
return _average
 
have spent a whole day battling with this and then work it out within a few minutes of posting for help 🙄!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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