D
Danu
In the past I have been able to make a label associated with a text box
appear on a form if certain values appeared in the text box. See below:
If Me![txtNPA] = "(123)" Then
Me![lbl179].Visible = True
ElseIf Me![txtNPA] = "(456)" Then
Me![lbl179].Visible = True
ElseIf Me![txtNPA] = "(789)" Then
Me![lbl179].Visible = True
Else
Me![lbl179].Visible = False
End If
I still want to use this visible property only this time I need the the
label to appear if the value in the text box is not one of about 22 values.
This would make a VERY long If/ElseIf statement. What is the most efficient
way to do this?
Thank you in advance.
appear on a form if certain values appeared in the text box. See below:
If Me![txtNPA] = "(123)" Then
Me![lbl179].Visible = True
ElseIf Me![txtNPA] = "(456)" Then
Me![lbl179].Visible = True
ElseIf Me![txtNPA] = "(789)" Then
Me![lbl179].Visible = True
Else
Me![lbl179].Visible = False
End If
I still want to use this visible property only this time I need the the
label to appear if the value in the text box is not one of about 22 values.
This would make a VERY long If/ElseIf statement. What is the most efficient
way to do this?
Thank you in advance.