steve_bris
Registered User.
- Local time
- Tomorrow, 07:20
- Joined
- Mar 22, 2005
- Messages
- 30
Hi.
I am trying to get intSus be equal to the value of intDown in the following code and I don't know why it won't pass the value on .
Any help would be greatly appreciated
Thanks
Steve
Dim intDown as integer
Dim intSus as integer
intDown = 1
intSus = 1
Do
I am trying to get intSus be equal to the value of intDown in the following code and I don't know why it won't pass the value on .
Any help would be greatly appreciated
Thanks
Steve
Dim intDown as integer
Dim intSus as integer
intDown = 1
intSus = 1
Do
Sheets("Sheet3").Select
If Range("A" & intDown).Value = Name1 Then
intSus = intDown '-------- this line doesn't work
Else
intDown = intDown + 1
End If
Loop Until Range("A" & intDown).Value = Name1If Range("A" & intDown).Value = Name1 Then
intSus = intDown '-------- this line doesn't work
Else
intDown = intDown + 1
End If