I have a combo box on a form that has auto expand and limit to list set to yes. There are over 3,000 items in the list. If I put in w, n, s, or e it correctly displays items that begin with those letters then have a blank (i.e. W 10th St. or N 11th St) but if the item I need is Westwood lane, no matter how many letters I put in it does not display any selection. I have the field row source sql as
SELECT DISTINCTROW tblonst.[onst num], tblonst.[onst loc]
FROM tblonst
ORDER BY tblonst.[onst loc];
What am I doing wrong or not doing?
Thanks
SELECT DISTINCTROW tblonst.[onst num], tblonst.[onst loc]
FROM tblonst
ORDER BY tblonst.[onst loc];
What am I doing wrong or not doing?
Thanks