I'm not sure why this isn't working for me, but any logical event I attempt to attach this code to does not seem to produce any result, let alone the desired one. All other codes behind this form/controls seem to work just fine, so I started thinking perhaps something is wrong with what I'm trying to achieve. All I want to do is display a message box if TWO fields match the specified values together. Any help is greatly appreciated.
'Requires data entry into StipendGranted and StipendFundSource fields
If (Me.TrgCode = "AQ*" And Me.SelectionStatus = "Selected") Then
MsgBox "You must indicate whether or not this person received a travel stipend and the source of funds for the stipend.", vbOKOnly
Else
End If
'Requires data entry into StipendGranted and StipendFundSource fields
If (Me.TrgCode = "AQ*" And Me.SelectionStatus = "Selected") Then
MsgBox "You must indicate whether or not this person received a travel stipend and the source of funds for the stipend.", vbOKOnly
Else
End If