Note: I want to convert this input excel into the table being given in image
I want the whole input excel(.xlsx) to look like the table you can see in image.
If you’ll see carefully the column headers are repeating but the data is coming correctly in respective columns and rows…except the column 3 whose values are coming last.
I want the whole input excel(.xlsx) to look like the table you can see in image.
If you’ll see carefully the column headers are repeating but the data is coming correctly in respective columns and rows…except the column 3 whose values are coming last.
1 - Create Columns that you want in Build Data Table activity.
2 - Read the data of existing file from below query
“(From r In dtInput Select dtOutput.LoadDataRow(New Object() { r.Field(of Object)(“columnname”),r.Field(of Object)(“columnname”) },False)).CopyToDataTable”
dt Input - Input of excel file
dtOutput - Output of Build data table
Wherever i have mentioned as columnname use your column in same serial you have defined columns in build data table.
3 - Use write range activity finally for dtOutput.
I also want column W(of excel) values to be in column name “Successful”. If you can help further… this was a lot f help from you… thank you so much…I’ll mark it as solution afterwards… thank you very much