Have controls on main form that control a subform on the main form. One control I have is a clear filters button, when clicked I would like it to clear subform to null
I'm setting up a user form, based on this user form the user will select what they want to see based on a few controls on the main form such as list boxes. After they select what they want the sub form below to present they will hit a filter button that navigates the sub form which is a datasheet to display this information. Whenever they want to see a new subset search I have a clear filter button that deselects all the list boxes selection to null however I am having trouble writing the code to get the sub form below to reset to null?
Forms![dbo_tblPrintCenter subform].cmd_ClearFilters = ""
Did not work and also I've tried this
[Print Request Search Form] = main form
[dbo_tblPrintCenter subform] = Subform
Forms![Print Request Search Form]![dbo_tblPrintCenter
subform].Form.Requery