I want to check the AppStart table for a match on ApplicationId and one of the fields = 'Complete' This is what I have
If (DLookup("ApplicationId", "AppStart", "[ApplicationId] = " & _
Me.ApplicationIdFld & " AND [StartStatus] = '" & "Complete" & "'") = True) _
Then
Me.StartTickFld.Visible = True
End If
I know that there is a row that matches my request but It never goes down the true path
Any Help would be appreciated
If (DLookup("ApplicationId", "AppStart", "[ApplicationId] = " & _
Me.ApplicationIdFld & " AND [StartStatus] = '" & "Complete" & "'") = True) _
Then
Me.StartTickFld.Visible = True
End If
I know that there is a row that matches my request but It never goes down the true path
Any Help would be appreciated