G
Can you help me with my question? Which part do you need clarification on?
I didn't think I would get a response.
Hi John,
My boss has a regular rolodex which I created a database on Access with. It
lists their last, first, MI, so and so on. I should have had tabs to group
and allow my boss to access each letter in the alphabet by last name. Access
has already alphabetized it but I would like to group the last names for
easier access. Can you help?
John Vinson said:The simplest way to do this would be to create a Form based on a query
(sorted by lastname/firstname); use the Combo Box wizard to create a
Combo Box on the form, using the option "Use this combo to find a
record".
If your boss types L into the combo box, it will jump to the first
entry with a lastname starting with L. If s/he keeps typing (say types
LEW) it will jump to the first name starting with those letters (Lewis
say). Tabbing out of the combo or pressing Enter will bring up that
person's record.
If you really want alphabetical tabs, you can do it with some
considerable amount of work and VBA code - but in my opinion the
result will be harder to use than the combo. You could put 26 command
buttons, A to Z, on a form, and set the Filter property of the form to
limit the records to names beginning with that letter.
John W. Vinson[MVP]