I'm trying to set up a combo box that will search my records and I've gotten it to work, however I'm trying to fix the values it displays.
The row source for the combo box is
Code:
SELECT [Match].[MatchID], [Match].[Home], [Match].[Away] FROM [Match];
, with the fields Home and Away being lookup fields themselves, with rowsources
Code:
SELECT [Team].[TeamID], [Team].[TeamName] FROM Team;
.
So the search combo box displays MatchID, Home and Away fine, but it shows the TeamID column of Home and Away, and I would like it to show the TeamName column. Is there a way to use the column function (i.e. Column(#)) in the row source?