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
wylee1
New Member

Formulas on calculating the total of time

Hello,

 

Need some advice as I am new to PowerBI. I am trying to calculate the sum time from start time and end time. REfer to below.

DateTimeStart     DateTimeEnd      ToolName                 Operation    User          sumtime
31-Oct-16 9:00   31-Oct-16 17:00   HiSeq 2000 Engg   TrainServ      Bernard       error

 

sumHours = sumx(timeTable, DATEDIFF(timeTable[DateTimeStart], timeTable[DateTimeEnd], SECOND))/3600

 

Please advice how to make it work.Thanks

1 ACCEPTED SOLUTION
v-qiuyu-msft
Community Support
Community Support

Hi @wylee1,

 

You can create a measure like below:

 

TimeInter = DATEDIFF(SUM('Table2'[DateTimeStart]),SUM('Table2'[DateTimeEnd]),SECOND)

 

Or create a calculate column like this:

 

Inter = DATEDIFF('Table2'[DateTimeStart],'Table2'[DateTimeEnd],SECOND)

 

q4.PNG

 

Reference:
DATEDIFF Function (DAX)

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-qiuyu-msft
Community Support
Community Support

Hi @wylee1,

 

You can create a measure like below:

 

TimeInter = DATEDIFF(SUM('Table2'[DateTimeStart]),SUM('Table2'[DateTimeEnd]),SECOND)

 

Or create a calculate column like this:

 

Inter = DATEDIFF('Table2'[DateTimeStart],'Table2'[DateTimeEnd],SECOND)

 

q4.PNG

 

Reference:
DATEDIFF Function (DAX)

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
BhaveshPatel
Community Champion
Community Champion

You can try this measure to get the correct results:

 

TotalHrs:=SUMX(timeTable,([DatetimeEnd]-timeTable[DatetimeStart])*1440/60)

Thanks & Regards,
Bhavesh

Love the Self Service BI.
Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to give Kudos.

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.