I was wondering if the was a way to skip numbers in a counting
sequence. For example:

For i = 1 to 10
next i

Is there a way to skip over 5, 6, 7 so the count could be

1, 2, 3, 4, 8, 9, 10?

Thanks in advance.

Sandy