after consulting the subjects present in the forum, I allowed myself to ask my question which I have not found an answer yet.
I want to convert the whole datatable to an ARRAY STRING, Not only same column.
Thank you in advance
@Robot59
in case of we do need the datatatble represented as a string the output Datatable activity helps
If your scenario is different then let us know it. Especially on how the datarows should be handled. Maybe following approach will help:
assign activity:
left side: arrDTAsString (String Array)
Right Side:
(From d In yourDataTableVar.AsEnumerable
Select sra = String.Join(" | ",d.ItemArray.Select(Function (x) x.ToString).toArray)).ToArray
Hi @Robot59 ,
Wat you can do is,
- Use output datatable to get the value as string
- Split the data at β,β
Let me know, if it helps
Hello @ppr
It not work
My wish is: to send each row of my datatable to a googlesheet file.
with this method my row is displayed in my file in question {system.data.datarow}
Thanks in advance
[quote=βRobot59, post:4, topic:285836β]
It not work
the reason for your validation message is the missing ( on begin of the statement.
Just check always while copy and paste that the entire statement is catched.
@Robot59
with your additional information have a look here:
the hover indicates that the datatype is of Object Array
give a try on using row.ItemArray in this field
Thank you @ppr It works Well
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.