chiswickbridge
Board Regular
- Joined
- Feb 2, 2013
- Messages
- 126
My data is as follows...6 columns....Duplicate data in col A and col D....need to be attended to
<tbody>
</tbody>
Since the data set runs in 50,000 rows, I need a VBA to select Unique records of A and paste them in Col I and the corresponding unique records from Col D pasted in Col J.
AAA - has 3 unique records
BBB - has 2 unique records
CCC - has 2 unique records
Thanks.....
AAA | xxx | yyy | USD | zzz | www | AAA | USD | ||
BBB | abc | swe | INR | wed | fde | AAA | CAN | ||
CCC | CAN | AAA | INR | ||||||
DDD | USD | BBB | INR | ||||||
EEE | ROU | BBB | SRT | ||||||
BBB | SRT | CCC | CAN | ||||||
CCC | MYN | CCC | MYN | ||||||
AAA | CAN | DDD | USD | ||||||
AAA | INR | DDD | INR | ||||||
DDD | INR | EEE | ROU |
<tbody>
</tbody>
Since the data set runs in 50,000 rows, I need a VBA to select Unique records of A and paste them in Col I and the corresponding unique records from Col D pasted in Col J.
AAA - has 3 unique records
BBB - has 2 unique records
CCC - has 2 unique records
Thanks.....