Single Value Return in Query Populating Listbox

DMerchen

Registered User.
Local time
Today, 13:38
Joined
Sep 9, 2008
Messages
94
I am doing a query to populate a listbox from a separate table. When I do the query, I receive multiple returned values, and multiple values that are the same. Can I limit the number of returned values to be a list of the values in the table I am pulling from?

Vendor Table- -Only 2 entries. Should only show 2 values in List box if set up correctly...in my opinion. :)
1669144818589.png


Results when pulling the List box on the separate table.
1669145028774.png

The SQL Statement
SELECT Vendor.[Vendor Name], [Vendor].[Vendor Name] & "-" & [US/Non-US] AS Name FROM Projects, Vendor ORDER BY Vendor.[Vendor Name], [Vendor].[Vendor Name] & "-" & [US/Non-US];

Any help is appreciated.

Thanks,
Dave
 
Try removing the Projects table from your query.
 
Okay!! Too easy! Thanks for seeing that. Sometimes I can look at something too long.

Thanks for the assist! Works perfect!

Dave
 
Okay!! Too easy! Thanks for seeing that. Sometimes I can look at something too long.

Thanks for the assist! Works perfect!

Dave
Glad to hear you got it sorted out. Good luck with your project.
 

Users who are viewing this thread

Back
Top Bottom