View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default Difference between two date/time values

Yes.

After seeing Biff's reply I realized there is an easier and more accurate
method.

Your suggestion is basically same as his. although as written, your formula
return an error due to the extra " after mm

My final try.............

=INT(A2-A1)&" days "&TEXT(MOD(A2-A1,1),"hh "" hours ""mm"" minutes""")



Gord


On Mon, 31 May 2010 20:28:20 +0100, "David Biddulph" <groups [at]
biddulph.org.uk wrote:

Doesn't that formula go wrong if the time in A1 is earlier than the time in
A2, Gord?

Isn't it easier not to use DATEDIF, and just to use
=INT(A2-A1) & " days "&TEXT(MOD(A2-A1,1),"hh "" hours ""mm"" ?