Hi,
I have my main form, with a continuous sub form.
On the sub form, I have a dropdown. What I'm trying to do is, if they select a certain value from the dropdown, another field in this form becomes enabled.
I tried this on the afterupdate of my combo, and it works but it enables the field for all the records.
Is there a way to make something like this work on a continuous form?
I have my main form, with a continuous sub form.
On the sub form, I have a dropdown. What I'm trying to do is, if they select a certain value from the dropdown, another field in this form becomes enabled.
I tried this on the afterupdate of my combo, and it works but it enables the field for all the records.
Is there a way to make something like this work on a continuous form?
Code:
If Me!cbo_license_count = "2" Then
Me.number_license_needed.Enabled = True
End If