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.