I'm getting a "complie error, Loop with out Do" message.
I'm sure I have the Loop where I want it but it is contained within an If statement and I think this is the problem. At the moment I can not find a way around the problem
smiler44
I'm sure I have the Loop where I want it but it is contained within an If statement and I think this is the problem. At the moment I can not find a way around the problem
Code:
counter1 = 0
Do Until counter1 = 2
If counter1 = 0 Then
oucsigchars = 3
Else
oucsigchars = 4
End If
do stuff using oucsigchars
If OutputDataCol = 14 Then
counter1 = counter1 + 1
Loop
smiler44