Havng a DataTable Dt1
in a column we have 50 rows, out of which some values are empty.
If the third row is empty it has to be filled with the second row value.
If the 30th row is empty it has to be filled with the 29th row value and etc.,
It should not disturb the other coloumns, Consider we have to apply logic for the first column.
I have seen the excel, yes it is good understanding.
Output should be
1
2
2
3
4
5
5
5
6
7
8
8
9
At the same time, the workflow you have provided is not opening because of the version of the Studio
Could you please post the logic here if you donβt mind.
Read Range into DtData
For Each Row
If String.IsNullOrEmpty(Row(0).ToString) AndAlso RowIx <> 0
Assign Row(0) = DtData.Rows(RowIx - 1)(0).ToString
End If
End For Each Row
Write Range into DtData