find unique items (1 Viewer)

alienscript

Registered User.
Local time
Today, 03:56
Joined
Jul 17, 2004
Messages
20
Hello Access experts,

I try using query below to find the unique items in a Field but it doesnt work. Can someone help me with this query?

Thanks very much in advance.

In (SELECT [project_item] FROM [Table1] As Tmp GROUP BY [project_item] HAVING Count(*)=1 )
 

Attachments

  • find_unique_items.zip
    7.7 KB · Views: 108

Moniker

VBA Pro
Local time
Today, 05:56
Joined
Dec 21, 2006
Messages
1,567
SELECT DISTINCT [project_item] FROM [Table1];
 

alienscript

Registered User.
Local time
Today, 03:56
Joined
Jul 17, 2004
Messages
20
Thank you very much
 

Users who are viewing this thread

Top Bottom