The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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!!
Solved! Go to Solution.
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
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
User | Count |
---|---|
15 | |
13 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
12 | |
9 | |
7 |