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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting info from two unrelated DB tables

Status
Not open for further replies.

iisman

Technical User
Mar 6, 2005
85
CA
I currently have a page that gets data from one table, and displays th34e info for each item, and loops.
Code:
strSQL = "Select * From tblproj WHERE projcategory LIKE " & strShowCat & " AND projstatus Not LIKE 4"

I want to get data from a separate table, to populate a dropdown selection that needs to be displayed for each item.

does anyone know how i can do this?

thanks in advnace for the help
 
Use a totally separate query to build one dropdown first. Then clone it for each record as you display it.


Tracy Dryden

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard. [dragon]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top