Hello,
Well, slowly but surely I am plodding along...
I have a combo box on a form, and when I select one of the options (a numeric client ID number) it fills the other form fields with the correct data. However, is there a way to make the combo box options display in a more usable way?
Right now I have to select the actual client ID, which is an auto number and not really usable. Can I make the combo box display the First Name and Last Name (these are in two separate fields on the table), arranged by the last name, and when one is selected still fill the field with the proper Client ID?
For example, right now I have:
===============
Client \/
===============
1
2
3
.....
I Would like to see:
===============
Client \/
===============
Jim Allen
Bob Astler
Caryn Coollady
Chip Dupree
.....
*Even fancier would be "Allen, Jim" "Astler, Bob" "Coollady, Caryn" ... but I'll be happy with either.*
When a name is selected, the combo box field would fill with the correlating Client ID - not the name. (I have had the work with a single name field, but when I select one I get an error - incorrect datatype - because the field tries to fill with the name, not the ID (I believe)).
If there is a best practice to this type of thing I'm all ears.
Many thanks.