Brent said:
Is there a way to use the datediff function to return in results in a
minute:seconds format? Example 03:30 for 3 minutes and 30 seconds.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
No, because each use of DateDiff() only returns one value type, hours,
minutes, seconds, days, months,... etc. You'd have to do something like
this to get minutes & seconds:
DateDiff("s", #15:00#, #15:30:25#) \ 60 & ":" &
DateDiff("s", #15:00#, #15:30:25#) mod 60
The 1st line will return 30:
The 2nd line will return 25
The final result will be 30:25 (30 minutes & 25 seconds).
--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv
iQA/AwUBQ9apxoechKqOuFEgEQIOZgCfRzW9Z/Ss5HrvTBag7e/QGyrb0/4An2r9
lGGhAgeL1jmUkad7+gFGcSjS
=Q3Ht
-----END PGP SIGNATURE-----