String array to datatable

Hi All,

i have string array named ArrString {“Hello”, “this”, “is”, “Uipath”}

how i add this value into datatable and single column like:
Column A
Hello
This
is
Uipath

Need help on this.
thank you.

@pradip.pharne
you can add it by looping over the array items or with the help of LINQ

for each activity - over arrString (TypeArgument: String), loop varname: item

  • Add datarow - RowArray: {item}

grafik
grafik

1 Like

@ppr Thank you.

its working.

@pradip.pharne
perfect. Just do your final testing and if it was passing the test so mark the solving post as solution in order to close the topic. Thanks