How to check the column value is null and update with string using linq query

Hi @Manaswini_UI

Please try to use this linq query in invoke code activity

dtInput.AsEnumerable().Where(Function(row) String.IsNullOrEmpty(row("Comments").ToString())).
ToList().ForEach(Sub(row) row("Comments") = "No record")

2 Likes