I am in the situation where I am having a Datatable and I want to perform the manipulations in it.
Let’s say I have the sample datatable as below:-
Name Age
A 20
B 30
C 40
D 50
Now I want a new column have the values as:-
Name Age Merge
A 20 A20
B 30 B30
C 40 B40
D 50 D50
Now, the issue I am having is that I am having huge amount of data in the datatable and need to perform many comparative operations within the project. So I want a simple and upfront approach to achieve this.
Please help me on a high priority.
hi @hacky
Here is a sample xaml zipped folder that could resolve your issue
Its resolved concatenate_modified.zip (13.5 KB)
I have also added you with setordinal to place the concatenated column in the excel wherever you want by mentioning the index of the column, here in this xaml i have set as 0 index so the concatenated value will be there in first column of sheet2…