So you have multiple 'Projects' with the same name repeated? I think you
might has some design issues...
Anyways, just add the 'Distinct' keyword befor the field list in your select
statement...
Select DISTINCT [ field list ] from [table(s)]
where ...
Now, as you seem to have multiple Projects with the same name, you are likely
going to have to change the original query I posted to have the list of
fields rather than all fields (which is what the asterisk does). Otherwise
you will get the same project name if any of the other data in the record is
different (so instead of the ' * ', you will need to have the actual names)
SELECT DISTINCT projects, {other fields}, completed FROM project WHERE
completed = 'No'
** Note statement will not work with out you changing the "{other fields}
list to your field names...
HTH's
--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...dules/200604/1