I have a query which produces 2 column data for a listbox.
SELECT AthleteNames.Athlete, Mid([Athlete],InStrRev([Athlete]," ")+1) AS Expr1
FROM AthleteNames
WHERE (((AthleteNames.Athlete) Like [FORMS]![Memos].[UU].[CAPTION] & "*"))
ORDER BY AthleteNames.Athlete;
If the list is made as a multiselect, how can I just give the user choice between the left or right column, and not both or mixed row. Can it be done? Thanks
SELECT AthleteNames.Athlete, Mid([Athlete],InStrRev([Athlete]," ")+1) AS Expr1
FROM AthleteNames
WHERE (((AthleteNames.Athlete) Like [FORMS]![Memos].[UU].[CAPTION] & "*"))
ORDER BY AthleteNames.Athlete;
If the list is made as a multiselect, how can I just give the user choice between the left or right column, and not both or mixed row. Can it be done? Thanks