Convert the jarray to datatable using assign activity with dt = varJarray.ToObject(Of DataTable)
Use add data column activity and add a new column Column3
Then populate the values …as I see all the 3 values are similar say if you want to add xxx only as value for all roes then use assign with dt.Columns("Column3").Expression = "'xxx'"
Now you need to convert the datatable to jarray again using the same serialize and deserialize steps you used above in your code after read range
Ideally as per your code …you can start from step 2 as you are reading datatable from excel anyways and can add the column after that immediately and populte it
Thank you for replying I think this a work around solutions for solve the problem however I think I should to wait might be anyone have a good solution for this posted thank you.
My point is might by have an other way to do it that why the posted still opening.
For specific I’m not sure that is the best way to do as you reply
For make it clear , imaging if i have many step to do this and many sequence to do too.
My point is if I follow you step it working 100% but inconvenient for using it.
The concept is simple and maybe is one solution for anyone who got this problem same as me.
By the way I think about another thing that I’m looking for example in programming when your datatype is ready (in case example is ARRAY) then If I need to adding new index new key new value it easy to do
then i think when sometime in process in need to adding a new node in JArray maybe it just and new
Assign Activities and then perfectly what i want
or
If maybe another way is using benefit of invoke code imagine now JArray in my program is ready
so i just need add a new node my friend it should be the easy way to make it.