Is there any activity which adds values of multiple columns inside for each row in data table activity?
I dont want to use multiple update row item activities to update multiple column values.
Is there any activity which adds values of multiple columns inside for each row in data table activity?
I dont want to use multiple update row item activities to update multiple column values.
Hi @Sonalk ,I hope you are doing well.
How about the follwing using InvokeCode activity?
dt.AsEnumerable.Where(Function(r) r(āinput column nameā).ToString =ācolumn valueā).ToList.ForEach(
Sub(r)
r(āinput column nameā)=r(ātarget column nameā).ToString
End Sub
)
Thanks & Regards,
Shubham Dutta
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.