Deleting cell values - Error: Input string was not in a correct format

Ho,
Use read range activity to read the spread sheet existent rows. The output is a datatable.

You can use “for each row” to iterate your datatable rows.

To get first 1st column value use row(0) for second column row(1) and so on.

To check if column is empty check row(0) = Nothing in if condition.

1 Like