Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JeroenItho
New 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 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.

example

1 ACCEPTED SOLUTION
MFelix
Super User
Super 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


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super 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


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.