Hello Community Friends.,
I want to copy an entire row from first data table and paste it to second data table 2 times. Then i need to compare reference number from the original sheet and replace the duplicate one. How can i do this? Need help.
Thank you
postwick
(Paul Ostwick)
August 18, 2021, 2:52pm
2
Use Add Data Row to add a row from the first datatable to the second datatable.
can you help me with the syntax here ?
the row index would be dynamic. it is not fixed that which row to add ? that way i need the syntax
jack.chan
(Jack Chan)
August 19, 2021, 1:06am
6
assuming both datatables have the same columns you can use “Add datarow”,
in this example i loop over the first datatable and copy the second row to the other datatable
AJITH_SK
(AJITH KUMAR )
November 10, 2022, 5:38pm
7
Hi @supermanPunch , i need one help.
Dt1 :
Header - A B C
Value 1 2 3
Dt2 :
Header - A B C D E
Value - empty
String variable P -4
String variable Q - 5
I expected output :
Dt2 :
Header - A B C D E
Value - 1 2 3 4 5
Pls give solutions.