Apr 17 2022 04:23 AM
Hello Experts,
I need a msgbox to appear if the date I enter [FundingDate] equals any of the values in qryHolidays.Date. I get an Object Required error. I am not sure where the error is?
thank you
Private Sub FundingDate_AfterUpdate()
If Me.FundingDate = qryHolidays.Date Then
MsgBox "Holiday", vbInformation
Else
End If
End Sub
Apr 17 2022 05:34 AM
SolutionApr 17 2022 05:34 AM
Solution