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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply

Suming Time

I want to calculate the sum of time taken my each employee and also days based on that total time.
For example 100 task(each record) takes 00:20:00 (20 min for each task) , so total will be 2000 min and days will be 3.9 days (2000/(8.5hr * 60))and there are 4 such employee 
I'm using table visual to show the record.
But can't able to sum the time value.
Below is the dataset field

chintusasmal123_0-1716339359329.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @chintusasmal123 

 

The time type in Power BI represents a point in time rather than a Duration. As the current column is in Time type, you can create a new column with below DAX to convert it into minutes. 

Time (Minutes) = HOUR('Table (2)'[TimeHHMM])*60 + MINUTE('Table (2)'[TimeHHMM])

vjingzhanmsft_0-1716447061251.png

Then use the new minutes column for calculation. Create measures:

Total Time (Minutes) = SUM('Table (2)'[Time (Minutes)])
Total Days = [Total Time (Minutes)] / (8.5*60)

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @chintusasmal123 

 

The time type in Power BI represents a point in time rather than a Duration. As the current column is in Time type, you can create a new column with below DAX to convert it into minutes. 

Time (Minutes) = HOUR('Table (2)'[TimeHHMM])*60 + MINUTE('Table (2)'[TimeHHMM])

vjingzhanmsft_0-1716447061251.png

Then use the new minutes column for calculation. Create measures:

Total Time (Minutes) = SUM('Table (2)'[Time (Minutes)])
Total Days = [Total Time (Minutes)] / (8.5*60)

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

ryan_mayu
Super User
Super User

@chintusasmal123 

you need to convert to number and do the calculation then convert to text to show in days.

 

Solved: Re: [h]:mm:ss formatting calculating days rather t... - Microsoft Fabric Community

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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