In the query criteria, put Is Not Null.
Didn't work, same number of results came up
On Apr 16, 12:54 pm, Golfinray <Golfin...@discussions.microsoft.com>
wrote:
> In the query criteria, put Is Not Null.
>
[quoted text clipped - 18 lines]
>
> > Ryan
NetworkTrade - 16 Apr 2008 23:22 GMT
put the Is Not Null statement in the name column, not the number column.....

Signature
NTC
> Didn't work, same number of results came up
>
[quoted text clipped - 22 lines]
> >
> > > Ryan
John Spencer - 17 Apr 2008 03:06 GMT
Use the duplicate query wizard to find records where a field has
duplicate values. It will construct a query that looks something like
SELECT FirstName
FROM YourTable
WHERE FirstName IN (
(SELECT FirstName
FROM YourTable As Temp
GROUP BY FirstName
HAVING Count(*) > 1)
'====================================================
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
'====================================================
> put the Is Not Null statement in the name column, not the number column.....