'If you are using combox try this:
If [cboBoxName] = "No" Then
Me.[FieldName].Visible = True
Else
Me.[FieldName].Visible = False
End If
'if you are using checkbox you have to write in the IF statement "False" or "-
1"...i don't remember. Try this:
If [checkBoxName] = False Then
Me.[FieldName].Visible = True
Else
Me.[FieldName].Visible = False
End If
' I think -1 was yes and 0 is No. you can also try this if the above code
didnt work:
If [checkBoxName] = 0 Then
Me.[FieldName].Visible = True
Else
Me.[FieldName].Visible = False
End If
How to invisible a field(text) when another field (Y/N) is selected No.
Thanks
Alvin