Skip to content

=BEDATE (Between or Equal To Dates)

The BEDATE function compares a date to determine whether it falls between two other dates or is equal to either boundary date.

=BEDATE(IsThisDate; GreaterThanOrEqualToThisDate; AndLessThanOrEqualToThisDate)
  • IsThisDate

    • The date being evaluated.
  • GreaterThanOrEqualToThisDate

    • The start date that IsThisDate must be greater than or equal to.
  • AndLessThanOrEqualToThisDate

    • The end date that IsThisDate must be less than or equal to.
  • The function checks whether IsThisDate is greater than or equal to the first comparison date and less than or equal to the second comparison date.

  • If both conditions are met, the function returns 1 (true).

  • If either condition is not met, the function returns 0 (false).

  • Dates must be provided in a valid date format.

  • Boundary dates are included in the comparison.

  • This function is useful for inclusive date range checks in conditional logic and workflows.

=BEDATE(2023-04-20; 2023-04-20; 2023-04-28)
  • Returns: 1 (true)

BEDATE, inclusive date comparison, between or equal dates, date range check, formula function, conditional logic, workflow formulas, date validation