Hi everyone,
I need a suggestion.
I’m working with an excel file and I should make an insertion of a new column. The new column should enhance it with the concatenation of three other fields read by the rows of the excel file.
this is the initial table below
data code1 code 2
18/05/2020 11 A3
18/05/2020 81 b6
18/05/2020 55 b6
18/05/2020 81 b6
should become as below
data code 1 code 2 concatenation
18/05/2020 11 A3 18/05/202011A3
18/05/2020 81 b6 18/05/202081b6
18/05/2020 55 b6 18/05/202055b6
18/05/2020 81 b6 18/05/202081b6
Finally from the table I should delete all the rows that have duplicates, but not only the double rows but also the original ones.
To be clearer, I show you below how the table should become.
data code 1 code 2 concatenation
18/05/2020 11 A3 18/05/202011A3
18/05/2020 55 b6 18/05/202055b6
how can i delete both the duplicate line and the control line?
Is there a way to keep the right rows in one table and save duplicate rows in another table?
I hope you can help me and if you have any examples from which I can can take ideas please attach it
thanks