NAME
DateIsOnOrAfter — Check if first date comes on or after the second date.
SYNOPSIS
DateIsOnOrAfter FirstDate SecondDate
DESCRIPTION
Return Value
1 First date is on or after the second.
0 First date is before the second.
Arguments
FirstDateString in date format.
SecondDateString in date format.
More Info
This command is like greater than or equal to (>=). Note this command is effectively ![DateIsBefore $FirstDate $SecondDate] but still we include it for the sake of convenience / expressiveness.

For information about how to configure the format, see About Date and Time Commands.


For information regarding exceptions / errors, see here.
EXAMPLES
% DateIsOnOrAfter 2000-01-01 2000-01-01
1
% DateIsOnOrAfter 2000-01-02 2000-01-01
1
SEE ALSO
DateIsAfter, DateIsBefore, DateIsBetween, DateIsOn, DateIsOnOrBefore, DatetimeIsAtOrAfter, SetDateFormat
KEYWORDS
check, date, verification