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

Excel Date and Time Query

Sai

New Member
Hi,

Can you please help me how to create a formula in excel in order to obtain the number of days and time since last 100 year from the current date.

Much appreciate on your help.

Regard
Sai
 
Hi !

As it depends on the expected result sample worbook
you forgot to attach ! (See the forum rules …)
 
Hi Bosco,

Thanks for the formula but it's not working hence i have attached the excel file where i got the number of days between two dates.

Now my query is here how to fetch the time, means how much times have been spent in those days.

Regards
Sai
 

Attachments

  • Date and Time Solution.xlsx
    8.6 KB · Views: 11
Not sure what you want.
If your date in F8 is a real date and not a formula you can try this.
Code:
=INT(F7-F8) & " days, " & HOUR(F7-F8) & " hours, " & MINUTE(F7-F8) & " minutes and " & SECOND(F7-F8) & " seconds"
 
Use DATEDIF to calculate the number of days between the dates (post #3) than multiply by the number of seconds in a day
 
Back
Top