G
Guest
Hello,
I have an access table with 200,000 rows of three column data (see snippet
below):
Field1 Field2 Field3
213543 5 05.0102
213543 5 05.0102
213543 5 05.0103
213543 5 05.0103
213543 5 05.0201
213543 5 09.0401
213543 5 09.0401
I want to elimate any complete duplicate rows. so using the above example,
I'd like the output to look like:
Field1 Field2 Field3
213543 5 05.0102
213543 5 05.0103
213543 5 05.0201
213543 5 09.0401
Basically, i want the rows to only appear once, and in some cases i've got
exact identical rows.
I have an access table with 200,000 rows of three column data (see snippet
below):
Field1 Field2 Field3
213543 5 05.0102
213543 5 05.0102
213543 5 05.0103
213543 5 05.0103
213543 5 05.0201
213543 5 09.0401
213543 5 09.0401
I want to elimate any complete duplicate rows. so using the above example,
I'd like the output to look like:
Field1 Field2 Field3
213543 5 05.0102
213543 5 05.0103
213543 5 05.0201
213543 5 09.0401
Basically, i want the rows to only appear once, and in some cases i've got
exact identical rows.