Comments on: How to calculate time in Excel - time difference, adding / subtracting times

The tutorial explains different ways to calculate times in Excel and demonstrates several methods of adding times and calculating time difference. You will learn a few useful formulas to sum times and add hours, minutes or seconds to a given time. Continue reading

Comments page 6. Total comments: 1022

  1. I have used the Formula TEXT and found between 2 different times the hours and minutes. I have done this for a whole month. but now i want the total hours worked on that month. Which function should i use?

  2. Hello Alexander! I am looking for a formula to calculate the years, days, and months along with a subtotal of the length of service. I could not get the subtotal to match the total of each hire date and ending day of this employee. I figured I will need to add the day in with the years and months. I still wasn't getting an accurate subtotal. What am I doing wrong? And how would I do the formula? Thanks!

    ID Last Name First Name Date Hired End Date Length of service
    1234 DOE DARREN 11/19/1998 10/18/1999 0 years,10 months
    1234 DOE DARREN 04/05/2001 02/05/2004 2 years,10 months
    1234 DOE DARREN 07/18/2004 01/12/2005 0 years,5 months
    1234 DOE DARREN 02/18/2009 08/29/2011 2 years,6 months
    1234 DOE DARREN 01/21/2013 08/10/2019 6 years,6 months
    1234 DOE DARREN 04/21/2021 05/09/2021 0 years,0 months
    1234 DOE DARREN 02/07/2022 10/04/2022 0 years,7 months

    SUBTOTAL

    1. Hello!
      I don't really understand what subtotal you want to calculate. However, I assume that the "Length of service" column contains text, not numbers. You can't execute any mathematical operations on the text.
      To calculate length of service, you can use this guide: Calculate number of days between two dates in Excel.
      Please provide me with an example of the expected result, and I will try to help.

  3. Hi Sir.Good Day.Please help me with the right formula of late,undertime and Overtime.Im always getting the wrong formula.
    Start Time=07:00
    End Time=16:00

    For late.6min-35min=0.5 36min-1.06hr=1
    For undertime.6min-35min=0.5 36min-1.06hr=1
    For Overtime.(17:00-17:29=1),(17:30-17:59=1.5),(18:00-18:29=2)

    A B C D E
    1 IN OUT LATE UNDERTIME OVERTIME
    2 07:06 15:55 0.5 0.5
    3 07:00 18:20 2

    Thank You,

    1. Hello!
      To find the desired time interval, use the MATCH function with Match_type=1
      In columns A and B, write down the values
      07:00 0
      07:06 0.5
      07:36 1
      08:06 1
      08:07 0
      14:54 1
      15:25 0.5
      15:55 0
      17:00 1
      17:30 1.5
      18:00 2
      18:30 0
      Formulas for calculating of late, undertime and overtime:

      =INDEX(B1:B5,MATCH(D1,A1:A5,1)) late
      =INDEX(B6:B8,MATCH(E1,A6:A8,1)). undertime
      =IFERROR(INDEX(B9:B12,MATCH(E1,A9:A12,1)),0) overtime
      Hope this is what you need.

  4. If i want to do an if statement based on the # of hours, what am i missing.

    eg. 4hrs=$50, 4-8hrs=$100, >8hrs=$150
    cell a1=1:00am, b1=6:00am, c1=b1-a1, d1=IF(C1<4,50,IF(AND(C14),100,150))

    I've tried the above but c1 does not give me 5 as the answer unless i turn it to "hour" format, and d1 gives me answer of 150.
    Final answer should be 100 as it falls within 4-8hrs.

  5. Hi! I'm having trouble creating the formula for counting working time with consideration of working hours.

    Working hours: 8:00 - 17:00

    Example:
    A1 = 8/18/2022 16:50 ; B1 = 8/19/2022 8:20 ; C1 should return 30 minutes.
    A2 = 8/18/2022 9:30 ; B2 = 8/18/2022 12:00 ; C2 should return 2 hours and 30 minutes.
    A3 = 8/18/2022 17:30 ; B3 = 8/19/2022 7:54 ; C3 should return 0 hours and 0 minutes.

    Hoping to get some help here. Thanks!

  6. Hi, Good day! I've been reading all the comments here but I cannot find any related of my problem here. I want to sum my time in one go and it goes like this:

    7:03-11:19 and 1:00-7:00

    I came up with a formula like this:
    =Round(Sumproduct(11:19-7:03)+(7:00-1:00)*24,2

    But as expected, it doesn't result to 10.27 hrs

    What formula should I use for it? Thank you in advance.

    1. Hello!
      Your data is written as text. To extract time from text, use the MID function. To convert text to time use the TIMEVALUE function.

      =TIMEVALUE(LEFT(A2,SEARCH("-",A2)-1))

      =TIMEVALUE(MID(A2,SEARCH("-",A2)+1,10))

      Find the time difference as described in the article above.

  7. Dear mister Alexander Trifuntov,
    I am sorry I make a mistake. I think this day my body was in bed in my head on the moon.
    All work perfectly.

    Do not know for what I want 11:30 – 3:00 = 3:30 since the real answer finally is 15:30 like in your formula.
    Sorry for this mistake and thanks a lot and have a nice day!

  8. Thanks for your feedback. Really appreciate.

    All 24H format (Format Cell > Time > 13:30)
    Example #1
    O8: 3:00
    P7: 11:30

    Normally must show 3:30
    Trying what you say:
    =IF(O8>P7,P7-O8+1,P7-O8)
    Give 15:30, which is not ok because show result on 24 formats.

    Example #2
    O11: 4:00
    P10: 14:30

    Normally must show 10:00
    Trying:
    =O11+1-P10
    Give 10:00, which is ok

    Thanks by advance!

    1. Hi!
      The result of your example 1 I can't understand and repeat. Excel stores time in 24-hour format. Please read the above article carefully. 11:30 is 11:30, not 23:30. Write the time correctly.

  9. Hi,

    In the following, I want: End – Begin.
    Format of time is 24 hours (0:00 = 24:00)

    For example:
    Begin 11:30
    End: 3:00

    End - Begin = 3:00–11:30 = 15:30

    Begin End
    11:30 3:00
    11:30 4:00
    14:00 4:00
    13:30 5:00
    10:30 4:30
    14:00 5:30
    12:30 5:00
    15:00 6:00
    14:00 5:00
    16:00 7:00
    14:00 7:00
    14:00 9:00
    17:30 9:00
    17:30 9:00
    14:30 9:00
    16:00 10:00
    13:30 0:00
    13:30 0:00
    5:30 17:00
    2:30 22:00
    3:30 22:00
    5:00 22:30
    4:50 20:45
    6:40 21:40
    6:15 22:30
    6:20 0:30
    6:05 0:30
    6:25 0:00

    Thanks by advance.

  10. Hello,
    I have read your post and the comments but I can't find what I need. I am trying to figure out the hours between days in military time. If possible I am trying to gee the dates in separate cells. i.e. Start date, start time, end date, end time. Product would be total hours. (3/19/2012, 0645, 3/20/2012, 1400, total is 31.25 hours)
    Please help,
    Thank you,
    Carlos

    1. Hello!
      Use the TIME function to convert text to time. Find the date and time difference and multiply by 24 to get the hours.

      =(C1+TIME(LEFT(D1,2),RIGHT(D1,2),0)-A1-TIME(LEFT(B1,2),RIGHT(B1,2),0))*24

      I hope it’ll be helpful.

  11. Hi there,

    I am trying to calculate time between two points in a video. For example, finding the difference between 02.54.42 (2 minutes, 54 seconds, 42 milliseconds) and 01.29.99 (1 minute, 29 seconds, and 99 milliseconds). I have tried formatting the cells to mm.ss.00 and subtracting using =A1-B1 (A1 having the larger number) but I get an error #VALUE. I want the answer to come out in the same format. Do you have any tips for making this calculation work in excel?

    1. Hi!
      To calculate the time difference in milliseconds, write the minutes and seconds in separate cells. For example, A1=2, A2=54.42
      Use formula

      =(A1/1440+A2/86400)-(B1/1440+B2/86400)

      and set custom time format hh:mm:ss.000
      I hope it’ll be helpful.

  12. How to use formulas to the full column.

  13. I wanted to calculate 5 digit hours with minutes, but I am unable to do so. For eg : 12345:55 + 54231:02 = 66576:57, But I dont know how to do this in excel, Please can someone help me with the same?

  14. Good afternoon Sir,

    How to get end date and time if i have start day and time together and to add "n" working hours excluding non working hours.

    example 1) if start date=02/06/2022 02:00 and to add 4:00 working hours and the working hours are from 08:00 to 18:00 and the non working hours to be excluded are of from 18:00 to 08:00 and the end date should be like 02/06/2022 12:00. what is the formula for this one sir.
    2) if start date=02/06/2022 16:00 and to add 4:00 working hours and the working hours are from 08:00 to 18:00 the and the non working hours to be excluded are of from 18:00 to 08:00 and the end date should be like 03/06/2022 10:00. what is the formula for this one sir.

    please reply

  15. Hello there,

    I am struggling with the following scenario. I work for an airline. I am trying to calculate delays. For example, a flight was scheduled to arrive at 23:32. The actual arrival time is 00:15. How would I calculate the results to show the amount of time the flight was delayed when it crosses over into the next day? I tried something like this, but I am not getting the results I wanted: =IF(E21-D21>0,E21-D21,"-"&TEXT(ABS(E21-D21),"h:mm")) The result comes back as -23:17. Thank you for your help!

    1. Hi!
      This question has already been discussed many times on our blog. If the start time is greater than the end time, then use the formula:

      =IF(A1>B1,B1+1-A1,B1-A1)

      Don't forget to set the time format in the cell.

  16. i have two columns in Excel 2016. the first beginning with 5/1/2022 11:44, the second column 2d 23h 47min, I need to have a formula that can add these two columns and come up with a third column with new m/d/yyyy h:mm.

    1. Hello!
      You can extract three numbers from the text into separate cells with the help of these formulas:

      =--CONCAT(IF(ISNUMBER(--MID(MID(A2,1,SEARCH(" ",A2)-1),ROW($1:$94),1)),MID(MID(A2,1,SEARCH(" ",A2)-1),ROW($1:$94),1),""))
      =--CONCAT(IF(ISNUMBER(--MID(MID(A2,SEARCH(" ",A2)+1, SEARCH(" ",A2,SEARCH(" ",A2)+1)-SEARCH(" ",A2)-1),ROW($1:$94),1)), MID(MID(A2,SEARCH(" ",A2)+1,SEARCH(" ",A2,SEARCH(" ",A2)+1)-SEARCH(" ",A2)-1),ROW($1:$94),1),""))
      =--CONCAT(IF(ISNUMBER(--MID(MID(A2,SEARCH(" ",A2, SEARCH(" ",A2)+1),20),ROW($1:$94),1)), MID(MID(A2,SEARCH(" ",A2,SEARCH(" ",A2)+1),20),ROW($1:$94),1),""))

      To convert these numbers to time, use these guidelines: How to convert numbers to time format in Excel.

  17. I have two dates = 02/22/2022 11:00 AM & 03/22/2022 08:26 AM and I am using formule INT(date1 -date2.
    format of both excels is the same still I recieve #value error. Please help.

  18. I am trying to do a countif based on times. For example, I have an activity that occurs at any point within 24 hours. I am trying to count how many times the activity occurs between 07:00 and 19:00 (18:59, actually). I have dates associated with the times as well which I don't need for this calculation. For example, in a data set that includes the two cells with the following information:
    1/15/21 4:13
    2/13/21 15:50
    I would like to include the second cell (time of 15:50) into my countif but not the first cell (time of 4:13).

    How could this be addressed?

    1. Hello!
      Using the INT function, you can extract the time from a date.

      =SUM(((A1:A10-INT(A1:A10))>=7/24) * ((A1:A10-INT(A1:A10))<=19/24))

      This should solve your task.

  19. How to Calculate Hours between two Times in ONE CELL.
    For Example.
    My input in A1 is [10-10]. Its Hours to Hours. If I'm working 10:00 AM to 10:00 PM its total 12 hours.
    So how can I get TOTAL Hours if I give input [hours AM - hours PM] in a single CELL

  20. hi,
    would be grateful if you help me on below issue.

    i have 2 dates (start date & End Date) and need return values in hours in two category divided. category 1, Peak hours (10PM - 5AM) and Category 2 is Non- Peak Hour (5AM- 10PM).

  21. Hello Alex, thankyou for your post, can you help me with my problems? I really hope you can assist me

    I want to know how to subtract the video time duration from the video remaining time duration

    for example, I want to convert 01:10/01:38:30 (video duration time) to the 01:37:20/01:38:30 (video remaining time)\

    all I want to do is just substracting 01:38:30 to 01:10 but the excel format keeps converting my time duration to AM and PM format

    I really hope you can answer me, thank you Alex

  22. Hello, can you help me with my problem?
    I have database where is a lot of cells with contains time in the format for example 1h 30m
    Is it possible to automatically convert that format to something like that: 1:30 ?
    I will be very thankful for your help

  23. can you help to calculate time between 2 dates but you remove non working hours of 18H00 to 07h00

    Thank you

    1. Hi!
      Perhaps this answer will be useful to you. If this is not what you wanted, please describe the problem in more detail. Give an example of the source data and the expected result.

  24. I have data where the initial clock was set wrong e.g., 1/9/1930 11:00 but should have been 9/14/2021 1:15. I can get the date corrected using =DATE(YEAR(B3)+91, MONTH(B3)+8,DAY(B3)+5) and time corrected using =B3+TIME(2,15,0). Is there a way to correct them both using one formula and keeping the original format? When I tried =B3+(47829600/1440) it returns only the date and no time. Thanks

    1. Hello!
      Time is a fraction of a number. You can get it using the INT function.

      =DATE(YEAR(B3)+91, MONTH(B3)+8, DAY(B3)+5)+B3-INT(B3)+TIME(2,15,0)

      Hope this is what you need.

  25. Hi! Thank you so much for this instruction! I didint found one more thing i was looking for.
    So,
    Im working between 7.00am - 3:30pm monday - friday. I have these "saldo hours". You can collect 1 saldo hour before 7.00am and 3 saldo hours after 3.30pm.

    Example

    Working between 6:45am - 3:35pm. Get paid normal 8h (30min not paid lunch break) and collect 20minutes of saldo.

    Now my saldo is +0:20h

    Next day working 6:00am - 3:15pm Get paid normal 8h (30min not paid lunch break) and collect 45minutes of saldo. (coming 60min before and leaving 15min early - total 45min)

    Now my saldo is +1:05h

    So how to create this kind of function or formula, which can trakt the saldo hours?

    Thank you so much!!

    1. Hi!
      Determine the time using the TIME function. Use the IFERROR function to avoid errors in the calculation result.

      =IFERROR(TIME(7,0,0)-A1,0)+IFERROR(B1-TIME(15,30,0),0)

      I hope my advice will help you solve your task.

      1. Hi!

        Thank you for fast answer!

        That is not working.

        I use one column for time i go to work, next column for time i leave. Third column calculate the total time with this formula =(C3-B3)-TIME(0;30;0).

        But how i can create the forumula calculate from that time what is normal work hours (8h) and after that rest goes to saldo.

        Thank you!

        1. Hi!
          The formula I sent to you was created based on the description you provided in your first request.
          The formula calculates the saldo you wanted to calculate. Explain what exactly doesn't work.

          1. Hi!

            Now its working, i had some typo with , and ;.

            Thank you so much!

            I have one another problem, what i cant solve, in another thing.

            So i use this device to measure things and i use excel to collect data. Somehow this device sending data in "wrong" format. So if the decive show negative value excel turn it positive with + and if value is positive excel shows also positive value without +. And i need to keep number format in "text" otherwise there is problem with formula.

            Example:

            Device value is -0,12 -> excel shows +0,12
            Device value is 0,13 -> excel shows 0,13

            Is there anything i can do in excel? From device side there is nothing i can do.

              1. Hi!

                Now everything is working right! Thank you very much!

            1. One more thing.. sorry to replay so many times..

              What if the saldo is negative? that formula is not working for that. Sometimes i do short day and use saldos.

              example

              working between 06:00 - 14:00, so saldo go negative 0:30h.

              thank you!

              1. Hi!
                The formula I sent to you was created based on the description you provided in your first request.
                If you had specified all the terms at once, we would have saved a lot of time.

                =IF((((TIME(7,0,0)/24-A1/24)+(B1/24-TIME(15,30,0)/24))*24)<0, "-"&TEXT(-((TIME(7,0,0)/24-A1/24)+(B1/24-TIME(15,30,0)/24))*24,"h:mm"), ((TIME(7,0,0)/24-A1/24)+(B1/24-TIME(15,30,0)/24))*24 )

                Use time format in this cell.
                Negative time is written as text.

  26. Hello,

    Thanks for the tips. Unless I missed it in the article, I'm not seeing the solution I'm looking for. I'm planning courier routes and would like to display the transfer time for each stop. For the first column, I have the arrival time (e.g., 8:00AM). For the second, column, I have the transfer time listed (e.g., 8:00AM - 8:15AM). Is there a function I can use to display the transfer with the only variable being transfer time (e.g., 15 minutes, 30 minutes, etc.?) or would this require additional columns?

    Thanks!

    1. Hello!
      If I understand you correctly, you want to add time to the arrival time (15 minutes)
      Please try the following formula:

      =A1+TIME(0,15,0)

      If this is not what you wanted, please describe the problem in more detail.

      1. Hello,

        This is close, but I'm also hoping there is a way to display both the original time and the time plus variable in the same cell so that if the first column reads 8:00AM, the second column would read 8:00AM - 8:15AM.

        Thanks so much

  27. how to sum numbers and time in one column , for example ( 4151485 1:00 PM 10:00 PM) ?

  28. 1-Mar 1:00 PM to 5-Mar 3:00 PM = ???
    Please Formula..

  29. Hi

    How do I calculate with formula the number of hours , e.g. 0800-1700 ?

  30. hi!, I've managed to get the formula to successfully work with only 1 time in and 1 time out. how do i add more times to the formula. for example i want to calculate how long i was working for. i signed it at 8, signed out at 12:30 for lunch. signed back in at 1:30 and signed out at 5:15 at the end of the day. how do i make this a formula that calculates the number of hours and number of remaining minutes separately.

  31. How do I update this formula from using an 8 hour shift to a 10 hour shift? ,TIME(E6+8-INT(E11),F6+30-(60*(E11-INT(E11))),0),TIME(E6+8-INT(E11),F6-(60*(E11-INT(E11))),0)))))

    1. Hi!
      I cannot guess what your formula is doing. But you can try changing the number 8 to 10. If that doesn't help, give more information about your problem.

  32. How to subtract dd-mm-yy hh:mm am/pm valeues in excel (12hours format)
    For example
    2/17/22 12:00pm -2/17/22 2:00pm = 2 hours

    How to get this in excel

  33. My question is stock movement date is
    2022-02-14 16.51.12
    Gate entry date is
    2022-02-14 16.48.27

    Please help me how to calculated this hours, min, second

  34. Hi!
    If the value "Mon - THU (Morning)" is recorded in one cell, then it is impossible to search through such data.

  35. Anyone have formula to determine rate by weekday and weekend?

    Mon - THU (Morning) - $10
    Mon - THU (Night) - $11

    FRI - SUN (Morning) - $12
    FRI - SUN (Night) - $13

  36. How to subtract 30 min if the shift is for 8hr 30 min .

  37. How to determine a work shift, 06:30 to 18:59 - Morning, 19:00 to 06:29 - Night.

    =IF([@[Clock In Time]]>=TIME(6,30,0),IF([@[Clock In Time]]<=TIME(18,59,0),"Morning","Night"))

    Had try this formula but when key the clock in time between 01:00 - 06:29, it will come out "FALSE"

    please help....

    1. Hello!
      Please try the following formula:

      =IF(AND([@[Clock In Time]]>=TIME(6,30,0),[@[Clock In Time]]<=TIME(18,59,0)),"Morning","Night"))

      I can't check the formula that contains unique references to your workbook worksheets, sorry.

      1. it doesn't work :(

          1. Hello sir ,
            I have one task to solve . In our company there is 3 working shifts are there,
            1. 06:30 to 15:30 shift A
            2. 15:30 to 23:30 shift B
            3. 00:30 to 06:30 shift C

            and i want to add one column which give me only shift name when the employee place there entry in any time
            for example if
            if employee enter after 06:30 but before 15:30 then formula should give value "A"
            if employee enter after 15:30 but before 23:30 then formula should give value "B"
            if employee enter after 00:30 but before 06:30 then formula should give value "C"

            Please guide sir , what will be the best formula ?

            1. Hello!
              If I got you right, the formula below will help you with your task:

              =CHOOSE(IFERROR(MATCH(1,($A$1:$A$3D1),0),3),"A","B","C")

              Column A - the beginning of the shift, Column B - the end of the shift. D1 is the time entered by the employee. Determine the desired interval number using the MATCH function. The CHOOSE function will replace the interval number with the desired letter.

  38. In excel, How to subtract 4:58:00 Hrs from 02/07/2022 04:27:00 ?

    1. Hello!
      If your value is written in date and time format, then you can extract the time in the way described in this example

      =A1-INT(A1)

      Set time format in this cell.
      But you can't get the time 4:58:00 from your value. Only 04:27:00.

  39. Per hour 800 rupees then what is the cost for 4 Hrs 20Min

  40. Hello!!! Can I ask what formula should I use if the driver is arriving to job and he is paid for waiting time 30.08€ per after 45 minutes. I need first to find how many minutes and then how much they will get paid. Thank you very much indeed.

  41. How to convert 2 days 19:30:18.530787 into total hours and minutes.

    1. Hello!
      To convert text to date and time, use the formula

      =LEFT(A2,SEARCH(" ",A2)-1)+TIMEVALUE(MID(A2,SEARCH(" ",A2,6)+1,8))

      Then set a custom time format [h]:mm to show times over 24 hours as described in this tutorial.

  42. Hi I'm trying to calculate -minus break times, without the break time being displayed. So for example
    if total hours is greater than 4:30-0:15=04:15
    if total hours is greater than 6:00-0:20=05:40
    If total hours is greater than 8:00-0:30=07:30
    But all in the same Formula if that makes sense. Is this possible?

    1. Hello!
      If I understand your task correctly, use formula with nested IF function:

      =IF(A2 > =TIME(8,0,0),A2-TIME(0,30,0),IF(A2 > =TIME(6,0,0),A2-TIME(0,20,0),IF(A2 > =TIME(4,30,0),A2-TIME(0,15,0),A2)))

  43. I'm calculating time difference with dates using the formula:
    =TIME(HOUR(A2), MINUTE(A2), SECOND(A2)) - TIME(HOUR(B2), MINUTE(B2), SECOND(B2))

    The issue occurs when attempting to calculate the time elapsed in H:MM:SS for when it rolls into the next day, ie 12/01/2021 19:37 to 12/02/2021 03:40 .

    Is there a better formula to use when for the example above or a way to convert the data of the 12/02/2021 03:40 and use the same formula?
    Thank you

  44. How to convert 13451 into Hours and minutes?

  45. Hi, I am looking for what I believe is a simple solution, but, I think that I am just not "asking" google the right question LOL
    Anyways, I have my time total figured out.
    3:20 pm - 3:20 am - 12hours.
    Now, I would like to take that 12 hours (say it is in cell u7) and have it show 8 hours in d7 (regular time), anything over 8 hours (up to 3 hours) to show in e7 (overtime). Then, anything over that 3 hours, to show in i7 (double time).
    Thank you.

    1. Hello!
      If I understand your task correctly, the following formulas should work for you:

      =IF(U7>TIME(8,0,0),TIME(8,0,0),U7)

      =IF(U7>D7,IF(U7-D7>TIME(3,0,0),TIME(3,0,0),U7-D7),"")

      Hope this is what you need.

  46. I want remove 01/01/1900 12:52:52 AM
    Please guide

  47. Hi there! Thank you so much for this post!

    I have a question. I've set up a sheet with the formula shown here =TEXT(D2-C2, "h:mm") where I calculate the amount of minutes/hours worked on specific tasks. I then wanted to add all of these together, but not sure how to go about it, as =SUM() of all of those =TEXT() doesn't work at all...

    Could you point me in the right direction please?

    Thank you!

    1. Hi!
      Subtract the original time data with something like this:

      =SUM(D2:D9-C2:C9)

      I hope it’ll be helpful.

      1. It really works. Thank you very much

  48. Hi,

    How do you create a formula to add a time from a specific hour onwards. For example start time should be 7PM. data is 6:21PM, formula should start counting at 7PM onwards.

    1. Hi!
      The information you provided is not enough to understand your case and give you any advice, sorry. How much time do you want to add and what result do you want to get?

  49. I am trying to use a simple formula that will auto sum total hours worked. Everything works fine as long as the cells that are being added include an increment of at least one hour. However, all of the fields that have an amount between :01 and :59 are being 'skipped over' in the formula. Please see my example below:

    Day 1 Day 2 Day 3 Day 4 Day 5 Total Hours Worked
    1:00 1:00 1:00 1:00 :05 4:00

    As you can see, Day 5 was not included in the sum of the cell 'Total Hours Worked', and I can't see to figure out how to manipulate excel to include it.

  50. Hi Team,

    My start time is - 12:12:00 AM 23-Nov-21
    My End time is - 10:46:00 PM 22-Nov-21

    Query : how do i subtract this ( Start time - end time)?

    1. Hi!
      Please re-read the article above. It is impossible to find the difference. The start time must be less than the End time.

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)