Using check boxes to select multiple entries

M

mark

If I'm understanding this correctly, you wish to have the
label (or whatever) of the checkbox automatically entered
into a text field if that checkbox is selected? If that
is right, you can add code similar to this to the
AfterUpdate event of each checkbox:

If chkBox.value = -1 then
Me.textField.value = textField.value & ", " & "text of
label"
end if

You may also want to add an Else statement to deal with a
user un-checking a checkbox (chkBox.value = 0)

Hope that helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top