Hi Chandoo,
I have 800,000 records in three columns with hundreds of duplicate records. Data is not arranged in any particular (ascending or descending) order. For eg:
X Y J
x1 y1 j1
x1 y2 j1
x1 y1 j1
x3 y3 j2
x4 y3 j3
x1 y2 j1
and I want to assign them IDs based on identical rows:
X Y J ID
x1 y1 j1 1
x1 y2 j1 2
x1 y1 j1 1
x3 y3 j2 3
x4 y3 j3 4
x1 y2 j1 2
so basically I want to assign unique ID to duplicate records. Please help
I have 800,000 records in three columns with hundreds of duplicate records. Data is not arranged in any particular (ascending or descending) order. For eg:
X Y J
x1 y1 j1
x1 y2 j1
x1 y1 j1
x3 y3 j2
x4 y3 j3
x1 y2 j1
and I want to assign them IDs based on identical rows:
X Y J ID
x1 y1 j1 1
x1 y2 j1 2
x1 y1 j1 1
x3 y3 j2 3
x4 y3 j3 4
x1 y2 j1 2
so basically I want to assign unique ID to duplicate records. Please help