Hi guys. I filter a continuous form using several criteria that form a string called strWhere.
Then there is an On Click bit of code for First Name so when you click on First Name in the filtered form it opens a second form that allows you to enter more detailed information. Here is the code:
The problem is, when you click on First Name it only ever opens that record on its own and doesn't include all other results from the filtered continuous form form.
Is there any way to open a second form, pull through the filter from the first form, but go to the specific ID of the record you clicked on?
Then there is an On Click bit of code for First Name so when you click on First Name in the filtered form it opens a second form that allows you to enter more detailed information. Here is the code:
Code:
DoCmd.OpenForm "FurtherDetail", acNormal, , "[ID] = " & Me!ID
The problem is, when you click on First Name it only ever opens that record on its own and doesn't include all other results from the filtered continuous form form.
Is there any way to open a second form, pull through the filter from the first form, but go to the specific ID of the record you clicked on?