S
Steve
Hi
Not sure if my subject tells a lot.
Essentially I want to have a checkbox per record. This in
not a problem. Depending on whether the checkbox is true
or false I want to show another field for the user to
fill in. Again this seems to be OK.
However, if the checkbox is on it turns the other field
off BUT when i go to the next record where the checkbox
is off, the other field still remains off. i.e. the code
seems to work for all records rather than just the one.
The code is as follows:
If Me!UseAMW.Value = True Then
Me!Other.Visible = False
Else
Me!Other.Visible = True
End If
At the moment I have it on after update but have also
tried on Click.
Please Help.
Best Regards
Steve
Not sure if my subject tells a lot.
Essentially I want to have a checkbox per record. This in
not a problem. Depending on whether the checkbox is true
or false I want to show another field for the user to
fill in. Again this seems to be OK.
However, if the checkbox is on it turns the other field
off BUT when i go to the next record where the checkbox
is off, the other field still remains off. i.e. the code
seems to work for all records rather than just the one.
The code is as follows:
If Me!UseAMW.Value = True Then
Me!Other.Visible = False
Else
Me!Other.Visible = True
End If
At the moment I have it on after update but have also
tried on Click.
Please Help.
Best Regards
Steve