How do i code this For statement thus to skip to the Next for if a "No" flag is encountered?
Code:
For intRow=1 to intRowCount
DataTable.GetSheet(intSheetDetails).SetCurrentRow(intRow)
Flag = "NO"
Flag=ucase(DataTable("Flag","Details"))
If Flag = "YES" Then
QC_Path=trim(DataTable("QC_Path","Details"))
TestSetName=trim(DataTable("TestSetName","Details"))
Else
GO TO NEXT ITERATION IN "FOR" STATEMENT
End If
...
...
...
...
Next