Solved Display Name Instead of Id In Form

jo15765

Registered User.
Local time
Today, 05:13
Joined
Jun 24, 2011
Messages
130
I have a table that has a itemId column, then another table that has the itemName. I created a form for the table that has the itemId, so numeric values are displaying on the form. How can I have the form "lookup" or display the itemName so I have a meaningful name on screen for non-technical people?
 
You could try using a Combobox for that field.
 
ummmm, over my head here...how would I do that?
Did you want the user to edit the data or are they supposed to just look at it?

In the form's design view, you can replace the textbox with a combobox and assign a row source that uses the table with the descriptive name.

If you don't want the user to change that data, you can go to the record source of the form and simply use a query adding the other table, so you can pull the descriptive name instead of the numeric value.
 
Ahh....I do not want the user to be able to edit/modify just see the "pretty" name

Okay, that makes sense to me. I originally clicked on the table and did build form, Maybe I should have clicked both tables and not just one
 
okay that was super easy, looking at the form source, and using the queyr editor to build out my query!
 

Users who are viewing this thread

Back
Top Bottom