MinutesBetween
Computes the number of minutes between two points in time.
Syntax
-
MinutesBetween(t, s)
-
t
ands
are datetime structures or timestamps
-
Description
If t
and s
are DateTime
structures or timestamps, then MinutesBetween(t, s)
returns the (in general non-integral) number of minutes between t
and s
, irrespective of the order of t
and s
.
Examples
MinutesBetween(yesterday(), today())
1440