Forum Discussion
Kristy_Zim
May 22, 2022Copper Contributor
Subtracting data in <day> <hour>:<minute>:<second>
Hi, I need to be able to subtract date in the following format <day> <hour>:<minute>:<second> Customer placed order datetime Placed order with restaurant datetime 01 02:52:12 01 03:0...
- May 22, 2022
Dear Kristy_Zim
It is a little tricky to understand what you are after exactly.
However, if I assume that:
- The month and year of the data is not relevant (it can be any month or year)
- You wish to subtract "Customer placed order datetime" FROM "Placed order with restaurant datetime", so that you can achieve the goal:
- "Determine how long after the customer placed the order the order was placed with the restaurant", while
- Display the result in the same format as the input data (dd HH:mm:ss)
Then you can use something like this:
=TEXT(VALUE("2022-01-"&B2)-VALUE("2022-01-"&A2),"dd HH:mm:ss")
NikolinoDE
May 22, 2022Platinum Contributor
Excel Formula: Calculate Days Hours Minutes seconds between Two Dates
=INT(C3-B3)&" days "&TEXT(C3-B3,"h"" hrs ""m"" mins ""s"" secs""")
or
Calculate the difference between two times
Hope I was able to help you with this information.
I know I don't know anything (Socrates)