Hello,
I have this condition:
I need a condition that accept to inactive a National Schedule even when it does not have client codes, How can I start that condition with a look up or is there anything else to do that? Please help.
I have this condition:
Code:
If Left(Me.GCN, 1) = 9 And Len(Me.txt_ClientCodeString & vbNullString) = 0 Then MsgBox "You have selected a National GCN." & vbCrLf & vbCrLf & "Therefore, you must enter valid client codes against this record before saving.", _ vbCritical, "Missing Information" Else Left(Me.GCN, 1) = 9 And Len(Me.txt_ClientCodeString & vbNullString) = "" Exit Sub End If
Comment