Hello @Demo_User
First take add the column of output if it not present in the input datatable.then do for each activity and provide condition
if
String.isnullorempty(CurrentRow(0).tostring) or String.isnullorempty(CurrentRow(1).tostring)
assign - CurrentRow(outputColumn) = “Yes”
else
assign - CurrentRow(outputColumn) = “No”
Please use this query in the Invoke Code activity:
io_dt.AsEnumerable.ToList.ForEach(Sub(row)
row("ColumnB") = If(row("ColumnA").ToString.Equals(String.Empty) OR row("ColumnB").ToString.Equals(String.Empty) OR row("ColumnA").ToString.Equals("0"),"Yes",row("ColumnB").ToString)
End Sub)