I have a simple schedule/planning database whereby I schedule staff for events. I have among others two forms with underlying tables as follow:
- I have a Main scheduling Table, "tblEventDates", with a field: PlanDate (Form frmEventDates)
- I have a separate Table, "tblExceptDates", with a field: ExecptDate (Form frmExceptDates) where exception dates such as holidays, conference dates, etc. are captured.
What I need:
The date entered in the field PlanDate needs to be checked against any exception dates entered in "tblExceptDates". A warning message then needs to be displayed to indicate the specific conflicting exception date.
Any suggestions as to how to go about shall be highly valued.