Grouping!?

  • Thread starter Thread starter Ron
  • Start date Start date
R

Ron

Hi all,
I`m trying to craete a raw source for combo box from a table.
The problem is that the values shows more then once, I tried to do select
distinct but it didnt help, probably because of the ID(autonumber).

what to do?

TIA,
Ron
 
So if there are duplicates, and you are trying to store the ID, which one do
you want?

Try a RowSource like this:
SELECT Min(ID) AS MinOfID, MyText
FROM MyTable
GROUP BY MyText;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top