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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Combining multiple rows in data table with calculation

Hi Everyone,

 

I'm building a report using Power BI and am stuck on a calculation i'm trying to achieve. I have an excel file; with a couple of columns. For the sake of this example, let's refer to the 'Name', 'Date' and 'AHT' where the AHT column is a time column measured in HH:MM:SS.

 

There are multiple rows in the excel data though for the same name as can be seen in my screenshot below.

 

What i'm looking to do is to perform a calculation that takes all of the rows for a single month - let's say January; and then calculate the average of time as seen in the 'AHT' column - hopefully that makes sense. Is this possible to do?

 

PBI_3.png

 

Thanks very much in advance!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , You have to create time in second and then take avg

 

New colum=  hour([AHT])*3600 + minute([AHT])*60 + second([AHT])

 

Not you can create a meausre

Avg AHT = average([New column])

 

You can use new dynamic formatting

use a format like

 

"""" & QUOTIENT([net time],3600) & ":" & QUOTIENT(mod([net time],3600),60) & ":" & round(mod(mod([net time],3600),60),0) & """"

 

 

amitchandak_0-1692665728708.png

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , You have to create time in second and then take avg

 

New colum=  hour([AHT])*3600 + minute([AHT])*60 + second([AHT])

 

Not you can create a meausre

Avg AHT = average([New column])

 

You can use new dynamic formatting

use a format like

 

"""" & QUOTIENT([net time],3600) & ":" & QUOTIENT(mod([net time],3600),60) & ":" & round(mod(mod([net time],3600),60),0) & """"

 

 

amitchandak_0-1692665728708.png

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.