rgeinosky1
Technical User
I am having a brain block. The first If, Then statement works. It uses one table. The second one is using two tables. Do I enclose them in [ ]. I've tried that but must be doing something wrong. Help please
-----------------------------------------------------------
If Not IsNull([Date Closed]) = True And IsNull([Status]) = True Then
MsgBox "You failed to enter the Finding into the Master File"
End If
-----------------------------------------------------------
tblMaster tblPersons
If Not IsNull([Date Closed]) = True And IsNull([Status]) = True Then
MsgBox "You failed to enter the Finding into the Master File"
End If
-----------------------------------------------------------
Thanks
Bob
-----------------------------------------------------------
If Not IsNull([Date Closed]) = True And IsNull([Status]) = True Then
MsgBox "You failed to enter the Finding into the Master File"
End If
-----------------------------------------------------------
tblMaster tblPersons
If Not IsNull([Date Closed]) = True And IsNull([Status]) = True Then
MsgBox "You failed to enter the Finding into the Master File"
End If
-----------------------------------------------------------
Thanks
Bob