- Local time
- Today, 15:26
- Joined
- Feb 19, 2013
- Messages
- 17,817
Not sure if you have understood what Pat was saying or whether it is your termininology. Filtering occurs in forms after you have brought across the recordset. Pat is saying apply criteria before you bring across the recordset.i think this is how i already built my FE, everything is filtered according to what the user needs to work on
Note if you use the WHERE parameter for docmd.openform, this is actually a filter.
So instead of using the openform where parameter or in code something like
me.filter="CustID=" & 123
you build it into the recordsource
me.recordsource ="SELECT * FROM myTable WHERE " & "CustID=" & 123