Hi everyone,
I'm currently working through a large data set (300k rows) and and I've managed to group unique identifiers towards a record ID for example:
| ID | Key values | data 1 | data 2 |
| 1 | abc | 4352 | Alaska |
| 1 | abc | 500 | Ohio |
| 2 | xyz | 6453 | New Jersey |
| 2 | xyz | 48489 | New Jersey |
| 3 | jkl | 845 | Colorado |
| 3 | jkl | 2354 | California |
I'm currently trying to process each of these to a batch macro to output each set of ID which are the same as separate records for example:
| ID | Key values | data 1 | data 2 |
| 1 | abc | 4352 | Alaska |
| 1 | abc | 500 | Ohio |
My current theoretical solution would be to iterate through each record, but I'm not sure where I'd begin. Any help would be appreciated, thank you!