Hi everyone!
I have a problem.
When I run Macro4() below it works perfect.
But when I try to run it in a loop in macro3() I get problems. It jumps to cells it should not and behave strange. Any guesses why?
Sub Macro3()
Dim i As Integer
For i = 1 To 20
Call Macro4
Next i
End Sub
Sub Macro4()
Call Macro1
Call Macro2
End Sub
Thank you in advance.
Regards
Joxon
I have a problem.
When I run Macro4() below it works perfect.
But when I try to run it in a loop in macro3() I get problems. It jumps to cells it should not and behave strange. Any guesses why?
Sub Macro3()
Dim i As Integer
For i = 1 To 20
Call Macro4
Next i
End Sub
Sub Macro4()
Call Macro1
Call Macro2
End Sub
Thank you in advance.
Regards
Joxon