Skip to content

=GTDATE (Greater Than Date)

The GTDATE function compares two dates and returns whether the first date is greater than (later than) the second date. Useful for date validation, conditional logic, and workflow decisions.

=GTDATE(IsThisDate; GreaterThanThisDate)
  • IsThisDate – The date you want to evaluate.

  • GreaterThanThisDate – The date to compare against.

  • Returns 1 (true) if IsThisDate occurs after GreaterThanThisDate.

  • Returns 0 (false) if IsThisDate is equal to or before GreaterThanThisDate.

  • Supports both static dates and process field date tokens.

  • Dates must be valid and in a recognized date format (e.g., YYYY-MM-DD).

  • Formula functions are case sensitive and must be written in ALL CAPS.

=GTDATE([[Field: Date 1 (Date)]]; [[Field: Date 2 (Date)]])
  • Returns 1 if Date 1 is later than Date 2.

  • Returns 0 if Date 1 is the same or earlier than Date 2.


GTDATE, GREATERTHANDATE, compare dates, date comparison, conditional logic, workflow formulas, true/false, process field date, formula function