Example: Searching for book records in a small library.
Master Record Table contains book title, ISBN, author name, publisher. A Book Title Combo Box works fine if the book title resides in the Master Record Table, as expected the title appears in the combo box and when a selection is made the appropriate book record is displayed. Note that the combo box is built on a form which is tied to the Master Record.
HOWEVER, the above does not work if the book titles are NOT stored in the Master Record, but in a separate Book Title Table. Hence, when I open the combo box it displays the Book Title Table primary key (auto number) for the title and not the actual title.
Given that the actual title is stored in the Book Title Table, how do I get the combo box to display the title and not the primary key for that title?