I'm trying to skip to the next iteration in my vba code, with the 'continue' statement. Its not working..
Do Until IsEmpty(xlSheet.Cells(row, 1))
row = row + 1
If xlSheet.Cells(row, 2) = "Epic" Then
Continue
End If
xlSheet.Cells(row, 1).Value = 5
Loop
Any idea?? Thanks..