Calculates the difference between the day
part of two given date and time values and returns the difference.
Syntax get-days-from-dateTime-difference(strDateTime1,strDateTime2)
ParametersstrDateTime1 is
a string that represents one date and time to compare
and is specified in the format yyyy-mm-ddThh:mm:ssZ.
strDateTime2 is
a string that represents the other date and time
to compare and is specified in the format yyyy-mm-ddThh:mm:ssZ.
For
more information about date and time parameters, see Date and time parameters.
ReturnsA number that
holds the difference between the day part of the given date and time
values.
ExampleThe
following expression returns a number of value 337:
get-days-from-date-Time-difference('2000-10-30T11:12:20Z','1999-11-28T09:00:05Z')
|
|
|