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 th
The following approach works as well, assuming that your start date is in cell C2 and your end date is in cell D2:
=TEXT((D2-C2)-MOD(D2-C2,1),"0") & " days " & TEXT(MOD(D2-C2,1),"hh:mm")