luckycharms
Registered User.
- Local time
- Yesterday, 19:35
- Joined
- Jan 31, 2011
- Messages
- 24
Hi Folks,
I'm trying to rename a cell when there are duplicates of mutliple columns. Here's an example
I would like the query or code to update Col_3 (or add another column if that's easier) as below. Note that the order of the duplication is important.
I've seen solutions that use row_number() and over() clauses, but those just work in sql server. Any thoughts for how to tackle this in Access?
Thanks!
I'm trying to rename a cell when there are duplicates of mutliple columns. Here's an example
Code:
[FONT=courier new]Col_1 Col_2 Col_3 Note
A1 B1 C1
A1 B2 C1 Not a Dup
A1 B1 C2 Not a Dup
A2 B2 C2
A2 B2 C2 Duplicate
A3 B3 C3
A3 B3 C3 Duplicate
A3 B3 C3 Duplicate
[/FONT]
I would like the query or code to update Col_3 (or add another column if that's easier) as below. Note that the order of the duplication is important.
Code:
Col_1 Col_2 Col_3 Note
A1 B1 C1
A1 B2 C1 Not a Dup
A1 B1 C2 Not a Dup
A2 B2 C2
A2 B2 C2Dup1 Duplicate
A3 B3 C3
A3 B3 C3Dup1 Duplicate
A3 B3 C3Dup2 Duplicate
Thanks!