Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi I have a two datetime columns (starttime and endtime)
I would like a measure that calculate the duration in minutes between 08:00 -16:00
Example
Startime: 1-1-2021 06:35 and endtime: 1-1-2021 15:00 -> result: 420
Startime: 1-1-2021 01:35 and endtime: 1-1-2021 7:33 -> result: 0
Solved! Go to Solution.
@iseni ,
new column =
var _start =if(hour([Start_time]) <= 8 , date(year([Start_time]), Month([Start_time]),day([Start_time])) +time(8,0,0) , [Start_Time])
var _end =if(hour([end_time]) >= 16 , date(year([end_time]), Month([end_time]),day([end_time])) +time(16,0,0) , [end_time])
var _diff =diff(_start,_end, minute)
return if(_diff <0, 0, _diff)
Thanks works perfect 🙂
@iseni ,
new column =
var _start =if(hour([Start_time]) <= 8 , date(year([Start_time]), Month([Start_time]),day([Start_time])) +time(8,0,0) , [Start_Time])
var _end =if(hour([end_time]) >= 16 , date(year([end_time]), Month([end_time]),day([end_time])) +time(16,0,0) , [end_time])
var _diff =diff(_start,_end, minute)
return if(_diff <0, 0, _diff)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 102 | |
| 79 | |
| 57 | |
| 51 | |
| 46 |