Hi, I have a list of data that I need to concatenate. The data is in one column. I need to create a second column that concatenates it like this.
What I have What I need
BS-831271 -> BS-831271
BS-831271.01 -> BS-831271 \ BS-831271.01
BS-831271.0101 -> BS-831271 \ BS-831271.01 \ BS-831271.0101
BS-831271.010102 -> BS-831271 \ BS-831271.01 \ BS-831271.0101 \ BS-831271.010102
For each value, I need to look at the previous row(s) and see if the value above is contained in the current row. If it is, I need to concatenate those values together. This gets tricky when I look back more than 2 or 3 rows -potentially I need to look back at hundreds of rows prior. Does anyone know the best way to accomplish this? I assume it's a Multi-row but I'm having problems implementing.
Thanks in advance.