Forum Discussion

daniel_hob's avatar
daniel_hob
New Member
4 years ago
Solved

Gap between two durations

Hi everyone, 
I am trying to calculate gap (difference) between two durations:

Duration beween actual working time of the employees and the time they spend/stay in the workplace,
For calculating the effectiveness of the workday.

it's not like calculate difference between date.

I really appreciate any help.
Thank you,
Best Regards

2 Replies

  • Hi,

    you can use a calculated column

    Column = format(VALUE('Table'[Column2])-VALUE('Table'[Column1]),"hh:nn:ss")
    or a measure
    Column = format(VALUE('Table'[Column2])-VALUE('Table'[Column1]),"hh:nn:ss")
     

    If this post is useful to help you to solve your issue consider giving the post a thumbs up 

     and accepting it as a solution !