I have to check an Excel file with more than 5000 rows. In certain cases, though, I have nothing to do. How can express it in VB.NET?
For r = 196 To 5549
If r = 1233 And r = 1745 Then
'Do nothing
End If
Next
This is an example that what I'd like. How can I do?