Hi, im having trouble running a set of modules in order on a sheet then when thats done loop the seem sequence through all the sheets in the file
so far ive got
but wont that just run all of them at the same time i want it to run macro_1 when thats done run macro_2 ect when its run all of them move to the next sheet and do that same again
the only other thing is is there a way that i can put all of the macros into 1 larger macro that will loop through all the steps and then move onto the next sheet and do the same
hope that makes sense
regards
so far ive got
Code:
Sub Run_all()
Dim sh As Worksheet
For Each sh In ThisWorkbook.Worksheets
sh.activate
Call macro_1
Call macro_2
Call macro_3
Call macro_4
Call macro_5
Next sh
End Sub
but wont that just run all of them at the same time i want it to run macro_1 when thats done run macro_2 ect when its run all of them move to the next sheet and do that same again
the only other thing is is there a way that i can put all of the macros into 1 larger macro that will loop through all the steps and then move onto the next sheet and do the same
hope that makes sense
regards
Last edited by a moderator: