I have a form that sets the filter parameters for a query. That works great.
I want the form to filter the form that is based on that query.
the form I want for the results to show in is HDStock.
The form that ask for the criteria is HDSearch.
Right not I have HDStock set with the OnOpen FilterMe!Filter = filterString
Me!Filter = "cboSize = " & Forms![HDSearch]![cboSize] & "And cboPCD=" & "'"
Me!Filter = "cboPCD = " & Forms![HDSearch]![cboPCD] & "And cboOffset=" & "'"
Me!Filter = "cboOffset = " & Forms![HDSearch]![cboOffset] & "And cboColor=" & "'"
Me!Filter = "cboColor = " & Forms![HDSearch]![cboColor]
I get a run-time error '2465': HDSearch can't find the field 'Filter' referred to in you expression and the query pops up
Please help.