Link to home
Start Free TrialLog in
Avatar of champs
champs

asked on

choked filter

i am using filter by form to view records by their machine code. if there are less than thousand records in the table, then in the filter drop down list, i can choose the machine code, and view all records matching that code

however, if the records in the table exceed thousand, then in the filter drop down list i only get null or not null. i can no longer choose the machine code.

it there any limit on records for filters. what should i do??
Avatar of nico5038
nico5038
Flag of Netherlands image

If the MachineCode is the main search criteria you could add a combobox based on a "SELECT DISTINCT MachineCode From YourTable;"
Thus you get all distinct codes and you can use the afterupdate event to place the selected value as a filter.

Idea?

Nic;o)
Avatar of champs
champs

ASKER

i am not using forms or anything...this is directly from the open table...cant i directly do something...?
ASKER CERTIFIED SOLUTION
Avatar of nico5038
nico5038
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial