I have some code that I run and a part of it says:
Do While OX > 0
For g = 08, 11, 14, 17, 20
.
.
.
Next g
So I'm getting an error at the "For g" row because I'm sure I have the construction wrong. So how can I define this range so that it steps through (first g = 8, then at the "next g" it...