Hallo
If Column e = # then i need to replace # with the data from F
i tried som invoke code lige this:
dtTemp.AsEnumerable.ToList.ForEach(Sub(row)
If row(“e”).ToString.StartsWith(“#”) Then
row(“e”)=row(“f”)
End If
End Sub
)
But cant figure it out, any good advices?