Indicates whether a day is a public holiday or not. The dates corresponding to public holidays are specified by
BankHolidayAdd.
// Define public holidays
BankHolidayAdd("0714")
// Check a public holiday
IF BankHoliday("19700714") = True THEN
Info(DateToString("19700714", maskDateSystem) + " is a public holiday")
END
// Check a date in an Edit control
IF BankHoliday(EDT_Date) = True THEN
Info(DateToString(EDT_Date, maskDateSystem) + " is a public holiday")
END
Syntax
<Result> = BankHoliday(<Date to check>)
<Result>: Boolean
- True if the specified date corresponds to a public holiday defined by BankHolidayAdd,
- False otherwise.
<Date to check>: Character string or Date variable
Date to check. If this date corresponds to a string, it must be in YYYYMMDD format (YYYY corresponds to the year, MM to the month and DD to the day).
Business / UI classification: Neutral code