Hi,
I have a table with empty cell in 1st column, how do i delete the row based on the 1st column,
For i = 0 To Table1.NumberOfRows -1
Dim row() As Object = Table1.GetValue(0,i)
Dim name As String = row(0)
If name = "" Then
Table1.RemoveRow(i)
Return
End If
Next
The above don't work. Any help thanks.
I have a table with empty cell in 1st column, how do i delete the row based on the 1st column,
For i = 0 To Table1.NumberOfRows -1
Dim row() As Object = Table1.GetValue(0,i)
Dim name As String = row(0)
If name = "" Then
Table1.RemoveRow(i)
Return
End If
Next
The above don't work. Any help thanks.