Multiple Name Query

K

Kelly

Hi-
I have a list where there are several names that show up
more than once. I need a query to have those names show
up only once as well as still show the names that already
show up once. Can I do this?

Thanks for any help!

Kelly
 
G

Guest

Build a query with following SQL

SELECT [Your List Table].[Your Names Field
FROM [Your List Table
GROUP BY [Your List Table].[Your Names Field]

This will list the names only once. If there are other fields that you want along with the name, you need to select the group type for each of those fields. You do this by selecting from the drop down in the Totals row.
 

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

Top