While loop with continue activity

@BHUVAN

Just an example inside invoke to increase count you can use this

Select Case Weekday(startDate,VBMonday)
Case 1
If row(“Pattern”).ToString.Contains(“1”) Then
in_Count=in_Count+1
End If
Case 2
If row(“Pattern”).ToString.Contains(“2”) Then
in_Count=in_Count+1
End If
Case 3
If row(“Pattern”).ToString.Contains(“6”) Then
in_Count=in_Count+1
End If
Case 4
If row(“Pattern”).ToString.Contains(“7”) Then
in_Count=in_Count+1
End If
End Select

Hope it helps,
Cheers

3 Likes