S Sai New Member Aug 12, 2018 #1 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, 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
Marc L Excel Ninja Aug 12, 2018 #2 Hi ! As it depends on the expected result sample worbook you forgot to attach ! (See the forum rules …)
Hi ! As it depends on the expected result sample worbook you forgot to attach ! (See the forum rules …)
B bosco_yip Excel Ninja Aug 12, 2018 #3 Perhaps, =DATEDIF(DATE(YEAR(TODAY())-100,MONTH(TODAY()),DAY(TODAY())),TODAY(),"d")+1 Regards Bosco
S Sai New Member Aug 12, 2018 #4 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
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
Belleke Well-Known Member Aug 12, 2018 #5 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"
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"
pecoflyer Well-Known Member Aug 12, 2018 #6 Sai said: Now my query is here how to fetch the time, means how much times have been spent in those days. Regards Sai Click to expand... What do you mean? How many hours min and sec ?
Sai said: Now my query is here how to fetch the time, means how much times have been spent in those days. Regards Sai Click to expand... What do you mean? How many hours min and sec ?
pecoflyer Well-Known Member Aug 13, 2018 #8 Use DATEDIF to calculate the number of days between the dates (post #3) than multiply by the number of seconds in a day
Use DATEDIF to calculate the number of days between the dates (post #3) than multiply by the number of seconds in a day