I currently have a form I am using to input data into my database. The form itself has a subform on it. The main form itself lists the information on the person, teh subform list all the equipment assigned to this particular person.
I've added a new column on the subform in which users will be able to select which items assigned to this person they want to select, and print the report only with the selected items. I am looking for a way to modify my current code below to accomodate the check box that was added if possible.
DoCmd.OpenReport "Main_Table", acPreview, , "Name = '" & Forms!Main_Table!Name & "'"
Exit_Command38_Click:
I've added a new column on the subform in which users will be able to select which items assigned to this person they want to select, and print the report only with the selected items. I am looking for a way to modify my current code below to accomodate the check box that was added if possible.
DoCmd.OpenReport "Main_Table", acPreview, , "Name = '" & Forms!Main_Table!Name & "'"
Exit_Command38_Click: