Hi Helpers,
I have 2 hundred thousand records in a spreadsheet, one of the columns hold semicolon separated values. The number of values stored in this delimited string range from zero to a hundred.
What I would need to do is to remove a big number of values from this semicolon separated list, in a way that the format of the string does not change. The format is that the string 1) starts with ; 2) ends with ; 3) all distinct values are separeted by ;
The below simplified example illustrates how my records look like, what the format of the string is and how the values I need to remove look like.
Can you advise what would be the simplest and fastest way to removes the values from the semicolon separates strings?
Thanks in Advance
I have 2 hundred thousand records in a spreadsheet, one of the columns hold semicolon separated values. The number of values stored in this delimited string range from zero to a hundred.
What I would need to do is to remove a big number of values from this semicolon separated list, in a way that the format of the string does not change. The format is that the string 1) starts with ; 2) ends with ; 3) all distinct values are separeted by ;
The below simplified example illustrates how my records look like, what the format of the string is and how the values I need to remove look like.
Book15 | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | column A | column B | values to remove | |||||
2 | Griezmann | ;a;b;c;d;e;f;g; | a | |||||
3 | Müller | ;a;b;e;f;j;l; | d | |||||
4 | Salas | ;a;d;f;g;h; | g | |||||
Sheet1 |
Can you advise what would be the simplest and fastest way to removes the values from the semicolon separates strings?
Thanks in Advance
Last edited by a moderator: