When we are trying to find and replace 0 with 1 in an excel file, the activity replaces all the occurrences of 0.
e.g. cell value 101 becomes 111
the expected output is
if cell value is 0 then only it should replace it to 1
BOT should skip the other cells which having the values like 11005, 40, 100, 909, etc
in For each row if we use row(“column name”). contains(“0”) is working but due to large number of rows it is taking too much time which is not desirable.