How to add array to datatable

Hi @pravin_bindage

I hope both array are of same length then directly us the below

  1. Use for each with in argument as enumerable.range(0,array1.count()-1).toarray and chnage type argument to int32
  2. Use add datarow with array as
    {array1(currentitem),array2(currentitem)}

Cheers

1 Like