Hi,
I have a script where I update a table by another one.
For the final table, I would like to remove duplicate rows based on defined columns.
Thereby, the row with the lower row number should be deleted.
In the following you can see an example for better illustration:
Row | Date | A | B | C | D |
1 | 22.10.2021 | 1 | 10 | 4 | 15 |
2 | 23.10.2021 | 2 | 15 | 8 | 27 |
3 | 26.10.2021 | 3 | 2 | 5 | |
4 | 25.10.2021 | 4 | 7 | 13 | 12 |
5 | 26.10.2021 | 3 | 2 | 5 | 6 |
For this table, the duplicate rows are defined by the columns :Date, :A and :B.
Row 3 should be deleted and row 5 kept.
Could you provide me with a JSL code for that example?
Many thanks in advance.
Best Regards
Konstantinos