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 There,
I’m pretty new in Power Bi and I’m trying to calculate the duration and days from a single start time.
For example the start time is: 11-5-2017 09:48:56
Finally I would like to get a table like this.
Mtime | PowerW | Duration | Days |
11-5-2017 09:48:55 | 2300 | -00:00:01 | 0 |
11-5-2017 09:48:56 | 2300 | 00:00:00 | 1 |
11-5-2017 09:48:57 | 0 | 00:00:01 | 1 |
…. |
|
|
|
13-5-2017 09:48:57 | 2300 | 00:00:01 | 3 |
I hope someone can explain me how to make this.
Solved! Go to Solution.
Hi @JeroenItho,
Try to add two columns:
Time = MIN('Start'[StartTime])-'Power'[Mtime]
Format this as a time measure
days =
IF (
MIN ( 'Start'[StartTime] ) > 'Power'[Mtime],
0,
DATEDIFF ( MIN ( 'Start'[StartTime] ), 'Power'[Mtime], DAY ) + 1
)This should work.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @JeroenItho,
Try to add two columns:
Time = MIN('Start'[StartTime])-'Power'[Mtime]
Format this as a time measure
days =
IF (
MIN ( 'Start'[StartTime] ) > 'Power'[Mtime],
0,
DATEDIFF ( MIN ( 'Start'[StartTime] ), 'Power'[Mtime], DAY ) + 1
)This should work.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck 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 |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |