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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

Average of a Time value

Hi,

 

I don't know if the concept I'm thinking about even exists but I'll try.

 

I have a list of Time values that are representing the Time at which the employees of a company are starting to work.

I would like to have a Time with the average entrance time. 

 

Example.

 

08.00am

09.00am

10.00am

 

Expected result 09.00 am

 

Is this feasible?

 

Thanks in advance!!

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @Anonymous 

first, create a column

timeColumn = TIMEVALUE('Table'[Time])

then create a measure

avgTime = TIME(0, 0, 0) + calculate( AVERAGE('Table'[Column]), ALL('Table') )

then set avgTime measure data type as time in Modeling ribbon


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

2 REPLIES 2
az38
Community Champion
Community Champion

Hi @Anonymous 

first, create a column

timeColumn = TIMEVALUE('Table'[Time])

then create a measure

avgTime = TIME(0, 0, 0) + calculate( AVERAGE('Table'[Column]), ALL('Table') )

then set avgTime measure data type as time in Modeling ribbon


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

You can convert it to a Time field and using the HOUR function you can calculate the average.

 

Ricardo



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

Proud to be a Super User!



Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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