This is purely an Excel sheet question.
I have a time span that is basically a difference between two cells, each containing a date:
I have managed to get the time difference in number of hours and minutes by changing the number format to [h]:mm
. Now I would like to get the difference in number of days, hours and minutes. I tried to set the number format to [d]:[h]:[mm]
but it is not accepted by Excel.
Here's what I have now:
A B C (=A2-A1)
---------------- ---------------- ----------
1| 14/10/2011 00:00 17/10/2011 07:50 79:50
2| 14/10/2011 00:00 17/10/2011 11:00 83:00
Here's what I would like to get:
A B C (=A2-A1)
---------------- ---------------- ----------
1| 14/10/2011 00:00 17/10/2011 07:50 3:7:50
2| 14/10/2011 00:00 17/10/2011 11:00 3:11:00
How can I do that? Is there a number format available for that?
On the Home tab, click the Dialog Box Launcher next to Number. You can also press CTRL+1 to open the Format Cells dialog box. In the Category box, click Date or Time, and then choose the number format that is closest in style to the one you want to create.
You can use TEXT
=TEXT(B1-A1,"d:h:mm")
Note the same effect can be achieved using a simple number format on the cells directly
C1, C2
etc)d:hh:mm
If unlike your example data, your date differences exceed 31 days, then an approach such as
=INT(B1-A1)&":"&TEXT(B1-A1,"h:mm")
will work
Warning: the above only works for ranges less than 31 days. use
=CONCATENATE(TEXT(FLOOR(B1-A1,1),"@")," Days",TEXT(B1-A1," h:mm:ss"))
instead for ranges above 31 days. This will not sort well, so it would be better to do the calculation in one column and then prettify that column for the end result.
Unfortunately it appears number and datetime formats cannot be combined, otherwise a custom format of:
0:h:m
would be the ticket. However, if for spans of 32 days or more, you are satisfied with just displaying the number of (fractional) days you can use a custom format like:
[>=32] 0.00 "days"; d:h:m
The cell value remains numeric.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With