Hi, i am not sure if this helps.
The filter doesn't change the actual table. It just changes the query for the RecordSource. From what i understand, the RecordSource is also just a sql statement that retrieves everything from the table. ie. "Select * from Clients_table"
So, in my case i just replace it with a new sql statement with all the filter information. ie. "Select * from Clients_table WHERE Client_group LIKE 'Individual' ".
As a result, the record count at the bottom of the page will be reduced and you should be seeing only the filtered records.
Good luck.