I have two tabels with a relationship/lookup. Lets say it's CityTbl and CustomerTbl, and the customerTbl has a City lookup/List field.
I have a Customer Details Form based off the Customer Table but when I create a combo box to show a drop down list of the Cities to choose from, it displays the City Id number and not the City's name in the combo box.
I found a way to correct this by creating a Query with the two tables combined, CustomerDetailsQry, then creating the form off the query and having the combo box's record source for cities be [CityTbl.City]
However that doesn't work because now it's trying to replicate the cities in the CityTbl when I put in a new customer because the query is writting to the CityTbl directly and not to the CustomerTbl.
Is there anyway to display the city names and not ID numbers?