Hi, I have a set of data that is structured as many rows in a single column within a data table that I need to concatenate into a single row, separated by a semicolon. What is the best way to do this in UiPath. Below is an example how the data is currently structure and how I need to re-structured:
Currently structured in data table:
123
456
745
459
154
How I need it restructured:
123;456;745;459;154
Thank you for your assistance!