G
Guest
I have a combo box that uses a simple query as a row source to allow a user
to look records up based on a unique 10 digit key. Entries ARE limited to
the list.
I have around 48,000 records in the table being searched.
Suddenly valid numbers are yeilding a "Not in list" message.
There only seem to be specific records that this happens on, so I am
wondering if this is an issue of capacity. Since this has worked for some
time. If I sort the row source differently the results seem to change.
Currently the row source is:
SELECT DISTINCTROW Table.Field, table.Anotherfield FROM table;
When I SORT the list I can manually find the value, but it still does not
see it as "In list" as far as the error is concerned.
SELECT DISTINCTROW Table.Field, table.Anotherfield FROM Account ORDER BY
Table.Field;
Any ideas that might be causing this?
to look records up based on a unique 10 digit key. Entries ARE limited to
the list.
I have around 48,000 records in the table being searched.
Suddenly valid numbers are yeilding a "Not in list" message.
There only seem to be specific records that this happens on, so I am
wondering if this is an issue of capacity. Since this has worked for some
time. If I sort the row source differently the results seem to change.
Currently the row source is:
SELECT DISTINCTROW Table.Field, table.Anotherfield FROM table;
When I SORT the list I can manually find the value, but it still does not
see it as "In list" as far as the error is concerned.
SELECT DISTINCTROW Table.Field, table.Anotherfield FROM Account ORDER BY
Table.Field;
Any ideas that might be causing this?