Unique Count

C

carrie

I am trying to do a unique count in access. If I have the below loads in a
table:
ld number
236592
236592
2010968
2010951
I want to count the unique records which would be 3. If I use the Count(*)
function I get 4. Can I do this with out creating multiple queries?
thanks,
 
J

Jerry Whittle

Select Count([ld number])
FROM (Select Distinct [ld number]
From TheTable Name) ;
 

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