I would like to add a combo box to my form. I have four fields (in each record, naturally) that I would like to offer in that drop down box. That is, I've entered a single city into each of 3 or 4 fields and want a drop down that offers those three/four cities for selection (as opposed to a dropdown that lists all cities for all records.
The following attempt gets me all the cities for all the records (but, as said, I just want the cities from the current record):
SELECT [City] FROM [Facilities] UNION SELECT [ReferenceCity1] FROM [Facilities] UNION SELECT [ReferenceCity2] FROM [Facilities] ORDER BY [City];
Any ideas?
The following attempt gets me all the cities for all the records (but, as said, I just want the cities from the current record):
SELECT [City] FROM [Facilities] UNION SELECT [ReferenceCity1] FROM [Facilities] UNION SELECT [ReferenceCity2] FROM [Facilities] ORDER BY [City];
Any ideas?