The usual excel text-to-column is not helpful to process our data. I have an excel report (attached) with a column that contains numerous combined data that need to be separated into distinct columns. I need help writing a uipath bot that can achieve the desired report format.
This is what the raw data looks like (attached):
The data is in a Q&A format.
Use Build data table activity to create a data table with 4 columns.
Iterate through each rows of the input excel file, for each row,
split current row by β,β and assign to a array variable say var1, so you will get 4 entries as an array
use βadd data rowβ activity to add a row to the created table, use
split(var1(0),β:β)(1),split(var1(1),β:β)(1),split(var1(2),β:β)(1),split(var1(3),β:β)(1), to get all 4 answers.