BobK
Here is my understanding of how a filter on a query works.
A query is run and all of the rows that match the query are returned.
One or more columns have a filter and the user uses a filter
Only the records that match the filter are now displayed.
I assume the a second call to the database was not used and the records that did not match the filter are still in memory.
The user removes the filter.
All of the records are again displayed with out needing to make another call to the database.
If any of the above is incorrect, I guess I will not be able to do what I want and will have to settle for multiple calls to the database.
What I want to be able to do:
Run a query that returns multiple records but have a filter active so only certain records are initially displayed to the user.
If the user wishes to see all of the records, they just remove the filter and all of the records display without another call to the database.
Is that possible and how do I do it?
Thanks.