So you're saying that all three fields are duplicated?
Change your Select statement from SELECT Field1, Field2, Field3 to SELECT
DISTINCT Field1, Field2, Field3
--
Doug Steele, Microsoft Access MVP
http://www.AccessMVP.com/DJSteele
(no e-mails, please!)
Okay may be i gace the wrong specs.
Okay let me be more specific. i have 3 columns.
Claim No, Batch Cat and Suspension. I have 45000 lines.
example :- I see 100 lines of the same claim no with the same batch
cat
and
suspension.
But I need only one line.of this.
:
What's your definition of "unique data in column A only"?
Do you mean you want to know the various values that only occur once
in
column A?
The easiest way would be to go to create a query but not select any
tables
and switch to SQL view. Once in SQL view, type something like:
SELECT [ColumnA]
FROM [MyTable]
GROUP BY [ColumnA]
HAVING Count(*) = 1
(replace ColumnA and MyTable with the actual names)
--
Doug Steele, Microsoft Access MVP
http://www.AccessMVP.com/DJSteele
(no e-mails, please!)
I have 3 coumns in a table. all 3 columns have duplicate data. But I
want
to
find unique data in column A only. How do i do this in ACESS 2007 ?
Please
help.
.
.