suoirotciv
Programmer
I'm already doing this code below
But is there a way for the loop to look like this? Ofcouse the sample below is not working
========================================
I kept my Job because of TEK-TIPS
Thanks a lot to all who keeps on helping others.
Code:
Public Sub testloop()
Dim x
For x = 1 To 10
Select Case loopr
Case 1, 3, 7 To 10
Debug.Print loopr
End Select
Next
End Sub
But is there a way for the loop to look like this? Ofcouse the sample below is not working
Code:
Public Sub testloop()
Dim x As Integer
For x = 1, 3, 7 To 10
Debug.Print loopr
Next
End Sub
========================================
I kept my Job because of TEK-TIPS
Thanks a lot to all who keeps on helping others.