Skip to content

=LTNUM (Less Than Number)

The LTNUM function allows you to compare two numeric values to determine whether the first value is less than the second value. This function returns 1 if “True”, 0 if “False”.

=LTNUM(IsThisValue; LessThanThisValue)
  • IsThisValue – The numeric value you want to evaluate.

  • LessThanThisValue – The numeric value you want to compare against.

  • Evaluates the first numeric value.

  • Compares it to the second numeric value.

  • Returns 1 (true) if the first value is less than the second value.

  • Returns 0 (false) if the first value is greater than or equal to the second value.

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

  • Both values must be numeric; text values will cause errors or incorrect results.

  • Field tokens containing numbers can be used instead of hard-coded values for dynamic comparisons.

  • Useful for validations, thresholds, limits, and decision-making logic in workflows.

=LTNUM(50; 60)

Returns: 1 “True”

=LTNUM(50; 49)

Returns: 0 “False”


LTNUM, less than number, numeric comparison, conditional logic, workflow formulas, Boolean function, formula function