Yah that’s possible
—use excel application scope and pass the file path of excel as input
—inside the scope use READ RANGe Activity and get the output with a variable of type datatable named dt
—now use a for each row loop and pass the above variable dt as input
—inside the loop use IF Condition like this
row(“yourcolumnname”).ToString.Equals(“0”)
If it’s true it will go to THEN apart where we can use a simple assign activity like this
row(“yourcolumnname”) = String.Empty
Cheers @Manikandasamy