Skip to content

=LTEDATE (Less Than or Equal To Date)

The LTEDATE function compares two date values and returns a Boolean result. It returns 1 (true) if the first date is less than or equal to the second date. It returns 0 (false) if the first date is after the second date.

=LTEDATE(TheDateYouAreChecking; TheDateYouAreComparingItTo)
  • TheDateYouAreChecking – The date value or field token you want to evaluate.

  • TheDateYouAreComparingItTo – The date value or field token to compare against.

  • Evaluates the first date provided.

  • Compares it to the second date.

  • Returns 1 (true) if the first date occurs before or on the comparison date.

  • Returns 0 (false) if the first date occurs after the comparison date.

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

  • Date values must be in a valid date format recognized by the system.

  • Field tokens can be used to make the comparison dynamic within a workflow or process.

  • Commonly used for deadlines, due dates, expiration checks, and time-based conditions.

=LTEDATE(01/15/2024; 01/31/2024)
  • Returns 1 (true) because January 15, 2024 is before January 31, 2024.

Example: Click To Enlarge


LTEDATE, less than or equal date, date comparison, conditional logic, workflow formulas, date validation, Boolean function, formula function