I have two tables. Table A contains three columns, Author, Title, and Source. Table B contains two columns: Abbreviation and Full_Name. The Source column is linked to the Abbreviation column in a many-one relation.
I have a form (based on some very useful examples posted here!) which lets me choose an Author and then (via a table control in a subform) show all of the Titles by that Author, together with the Source values.
Instead of displaying the Source values, which are abbreviations, I would like the full names to show in the table control. Is this possible?
Example
Author | Title | Source
Smith | Article 1 | NYT
Jones | Article 2 | TS
Smith | Article 3 | GM
Abbreviation | Full_Name
GM | Globe and Mail
NYT | New York Times
TS | Toronto Star
When I search on Smith, the result is a table control showing
Article 1 | NYT
Article 3 | GM
I would like to get a table control showing
Article 1 | New York Times
Article 3 | Globe and Mail
I am very new to working with subforms. Any help would be very welcome!