K
KK
I have a table which has rows and rows that look like this:
A, 1
A, 2
A, 3
A, 3
A, 3
B, 1
B, 2
B, 2
B, 2
B, 3
I want to create a query that gives me something like this:
A, 1
A, 2
A, 3
B, 1
B, 2
B, 3
Basically create a table of unique values for each letter instead on
repeating ones.
How do I do this? Thanks.
A, 1
A, 2
A, 3
A, 3
A, 3
B, 1
B, 2
B, 2
B, 2
B, 3
I want to create a query that gives me something like this:
A, 1
A, 2
A, 3
B, 1
B, 2
B, 3
Basically create a table of unique values for each letter instead on
repeating ones.
How do I do this? Thanks.