I have the excel where I need to check if we have missing value in the column “Profit”. The missing value is denoted by a “?” as shown below. I then need to replace the value “?” only in the “Profit” column by the value in the “Total” column.
use read range activity to store this entire data into a datatable. Now for each row, check if row.item(“Profit”).ToString() = “?”, then assign row.item(“Profit”) = row.item(“Total”)