Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
i want to count the number of hours from start of shift till end of shift live.
for example:
| # | Scheduled start | Scheduled End |
| 1 | 05:30 | 14:00 |
| 2 | 06:00 | 14:30 |
| 3 | 06:30 | 15:00 |
| 4 | 07:00 | 16:00 |
If the time was 10:00am then the count needs to be:
1: 4.5
2: 4
3: 3.5
4: 3
i tried using the below formula however i cant add my scheduled start column. any sugguesions
Solved! Go to Solution.
HI @AI14
Please try
Hrs from Shift =
DATEDIFF (
TIMEVALUE ( 'Table'[Scheduled star] ),
MIN ( TIMEVALUE ( 'Table'[Scheduled end] ), TIMEVALUE ( NOW () ) ),
MINUTE
) / 60
HI @AI14
Please try
Hrs from Shift =
DATEDIFF (
TIMEVALUE ( 'Table'[Scheduled star] ),
MIN ( TIMEVALUE ( 'Table'[Scheduled end] ), TIMEVALUE ( NOW () ) ),
MINUTE
) / 60
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 17 | |
| 10 | |
| 7 | |
| 6 |