Combo Box Issues

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a unlinked combo box which has a source file based on a row in a table
but I cannot group the data as it insists on showing all of the records in
the table even if only select the one field as if the *(select all) field is
there whether I like it or not.

Is there a way around this so I can group the data.
 
SELECT MonthlyServiceReview.Month, * FROM MonthlyServiceReview WITH
OWNERACCESS OPTION;

Here the SQL the combo box generates.
 
The problem is with the * which mean select all

Try
SELECT Distinct MonthlyServiceReview.Month FROM MonthlyServiceReview WITH
OWNERACCESS OPTION
 
Worked a treat thanks. I need to learn SQL

Ofer Cohen said:
The problem is with the * which mean select all

Try
SELECT Distinct MonthlyServiceReview.Month FROM MonthlyServiceReview WITH
OWNERACCESS OPTION
 

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