Hi,
Last column is like a transaction number. Looking into the first 3 rows, the old transaction, line 1, generates new lines 2 and 3. This results in 2 identical lines (1 and 2). I want to remove or separate the identical rows.
2-1-2020, AAA, 1200, 1234
2-1-2020, AAA, 1200, 1234
2-1-2020, BBB, 600, 1234
6-4-2020, EE, 50, 2000
6-4-2020, EE, 50, 2000
6-4-2020, FF, 20, 2000
The result should show only 2 lines in this example, so I can't Unique.
2-1-2020, BBB, 600, 1234
6-4-2020, FF, 20, 2000
Tried and searched for more then an hour now, so any help is so appreciated.
Thanks