Forum Discussion
JeroenItho
9 years agoNew Member
Calculate Duration
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 ...
- 9 years ago
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
MFelix
9 years agoSuper User
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