cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

How to calculate two different timestamp ?

Hi all,

 

In the following image i would like to calculate the variance of ExaminationEndTime and ExaminationStartTime.

 

the output must be a integer or a whole number in minutes. so for example :

The variance of these two columns on the first row must be 5.

 

Any suggestions?

 

Many thanks,

 

Rega

 

 

2017-08-03 12_58_39-CapacityInsights - Query Editor.png

3 REPLIES 3
Eric_Zhang
Microsoft
Microsoft

@Anonymous

You could try 

Capture.PNG

diff mins =
IF (
    HOUR ( 'Table'[ExaminationEndTime] ) <= HOUR ( 'Table'[ExaminationStartTime] ),
    DATEDIFF (
        'Table'[ExaminationStartTime],
        'Table'[ExaminationEndTime] + 1,
        MINUTE
    ),
    DATEDIFF ( 'Table'[ExaminationEndTime], 'Table'[ExaminationStartTime], MINUTE )
)
Anonymous
Not applicable

Hi @Eric_Zhang,

 

Thanks for your input but i got the following message:

 

The start date cannot be greater than the end date...

 

2017-08-04 12_44_18-CapacityInsights - Power BI Desktop.png

Anonymous
Not applicable

Hi @Anonymous,

 

Try to use this calculated column:

 

Column = ([ExaminationEndTime]-[ExaminationStartTime])*24*60 

 // in minutes

 

If not works, try to change the columns to Date/Hour, and check which date you have in both columns.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors