• 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.

Please Help with time from 2 different hours.

Hello, I´d love to find a solution to my situation which is the following. I have a small worksheet to display the current time. So I have a starting time and an ending time(Goal Time). I would like to know what is the time left from the "Now time" to reach the "Goal Time". In other words: if means, if the start time is 5:30 AM and the Goal time, is 3:00 pm and now it is 8:00 AM, How long time is left to real the goal time? I am attaching the file I am using.

Thank you in advance.
 

Attachments

  • Time Test..xlsm
    25.4 KB · Views: 5
Try =IF(MOD(NOW(),1)>D6,"",D6-MOD(NOW(),1))
Be aware that :
NOW() is a volatile function
Format F5 as [h]:mm
The formula will only update when the sheet changes ( a calculation is made or a formula entered, etc...)
 

Attachments

  • Copy of Time Test..xlsm
    24.1 KB · Views: 8
Back
Top