What do you mean specifically? Maybe I don't use this "access way" myself.Using "filters" the way Access does, requires SQL Server et al to return the contents of entire tables/recordsets which are then filtered locally.
Docmd.OpenForm ... , WhereCondition:= ...is equivalent in behavior to
Code:
Form.Filter = ...
Form.FilterOn = true
In both cases, Access will attempt to pass the criteria to the DBMS, retrieve the primary key values, and then load the matching data. (Of course, this only works if the expression is SQL-enabled.)
Unfortunately, I don't know how to check the data retrieval at ACE/Jet. (The jet showplan does not say much about this.)As pat says - the ace (or jet) rdbms
Perhaps with a query with a calculated field and a function that logs the queried values. However, this does not necessarily say anything about the loading behavior, since the calculation could still run just before the display.
Last edited: