S
scharp1n2
My if then statement below works great, except if it was true then false ( as
in error) it deletes the entire field. What am I missing? Thanks in advance.
Dim MyDesc As String
MyDesc = [WorkDescription]
If Me.PermitBox = True Then
Me.WorkDescription = MyDesc & " Electrical Permit Included"
ElseIf Me.PermitBox = False Then
Me.WorkDescription = MyDesc
End If
in error) it deletes the entire field. What am I missing? Thanks in advance.
Dim MyDesc As String
MyDesc = [WorkDescription]
If Me.PermitBox = True Then
Me.WorkDescription = MyDesc & " Electrical Permit Included"
ElseIf Me.PermitBox = False Then
Me.WorkDescription = MyDesc
End If