Hi Brilliant Team,
I am really appreciated for getting help from uipath big forum. I need a assistance from you brilliant guys. I want to update two column into for each by linq operation.
dt.AsEnumerable().Where(Function(row) row (“Available”).ToString.Equals(“Find”)).ToList().ForEach( Sub (row) row(“UpdateCol”) = “Action need”; row(“FF”) = “No Action”)
It will return error when i will pass two column in for each but when i pass a one column in for each it will works perfectly …
Working fine:
dt.AsEnumerable().Where(Function(row) row (“Available”).ToString.Equals(“Find”)).ToList().ForEach( Sub (row) row(“UpdateCol”) = “Action need” )
Please resolve my issue. I know you will find a way to help me; Thanks in advance