Program a list box

  • Thread starter Thread starter Seahawk via AccessMonster.com
  • Start date Start date
S

Seahawk via AccessMonster.com

I have a list box that looks up all the names in a table, EX: 'Smith,Joe',and
puts them in alphabetical order.

Is it possible to only pull up the names that begin with the letters, say A-
F only, to display in the list?
 
Your list box has a Row Source property which is generally a query. You can
change the Row Source property to something like:
SELECT FullName
FROM tblNoNameProvided
WHERE FullName Between "A" AND "FZ"
ORDER BY FullName;
 
Very Nice. Worked Perfect.
Thank You very much

Duane said:
Your list box has a Row Source property which is generally a query. You can
change the Row Source property to something like:
SELECT FullName
FROM tblNoNameProvided
WHERE FullName Between "A" AND "FZ"
ORDER BY FullName;
I have a list box that looks up all the names in a table, EX:
'Smith,Joe',and
[quoted text clipped - 3 lines]
A-
F only, to display in the list?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top