Update one column value with another column value using

Hi,

How about the follwing using InvokeCode activity?

dt.AsEnumerable.Where(Function(r) r("relationship type").ToString ="o&p").ToList.ForEach(
Sub(r) 
     r("relationship type")=r("job relation career name").ToString
End Sub
)

Regards,