Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

combo box 1

Status
Not open for further replies.

tizwaz

Technical User
Aug 8, 2002
437
GB
I have 2 fields FileRef and RelatedFileRef and want to have a search form with a combo box which will include all the entries in both fields. Is there a way of doing this?
 
Use a union query...

SELECT FileRef FROM Table1
UNION
SELECT RelatedFileRef FROM Table1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top