• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Calculate date & time difference

Rodrigues

Member
Hi All
I am wondering if someone could help me please.
Need to calculate date and time difference between three columns.
The problem I'm facing is that, one of the dates and time are in a separate columns (F&G):
Column F=date
Column G=time (of F)
Column K = date & time together (separate column).
At the moment I'm using an helper "M" column to combine both cells (F&G), but if we could avoid helper column it will be great.
File attached for better explanation.
Any help it will be appreciated.
Thanks in advance.
Regards
R
 

Attachments

  • Book1.xlsx
    13.2 KB · Views: 10
Don't forget that if
startTime > endTime
then the time difference is given by
= MOD( endTime - startTime, 1 )
to give a positive time interval.
You would also need to subtract 1 from the number of days
= INT( endDate - startDate ) - ( startTime > endTime )
 
Back
Top