Is it possible for a checkbox to get its initial value from a field?
I have a field that tells me if someone is interested in our services. When the form loads I would like the check box to check if the field says "Yes".
How would I do this?
Something like this?
Private Sub Form_Current()
If Me.Interested = "Yes" then
Me.Checkbox389 = TRUE
Else
Me.Checkbox389 = FALSE
End Sub
Thanks.
I have a field that tells me if someone is interested in our services. When the form loads I would like the check box to check if the field says "Yes".
How would I do this?
Something like this?
Private Sub Form_Current()
If Me.Interested = "Yes" then
Me.Checkbox389 = TRUE
Else
Me.Checkbox389 = FALSE
End Sub
Thanks.
Last edited: