How to combine rows of different format

Hi,

How to combine A row(acc) with D row(fund)
output req:
acc11 fund 4500
acc 22434 fund 54345

so on…

Hi @venkateshtangudu,

Please read the datatable to a variable.
Use a “For Each Row” activity and iterate through each “row” of the datatable.
Inside the loop, you can get the desired value by assigning "acc "+row("acc").ToString+" fund "+row("fund").ToString

Warm tregards,
Nimin

hi

Thanks Nimin…let me try

1 Like