I have 6 macros that I was to run sequentially however I'd like to run the first 4 on one shirt, open the second sheet and then run the last two macros. Macro 5 copies information from sheet one to sheet two. I would like to have one button that can do all of this in one go. I will attach the VBA code I've tried so far below - this does all of the commands but doesn't move on to the next sheet
VBA Code:
Sub Button1_Click()
With Sheet7
Call Macro1 'Macro1
Call Macro2 'Macro2
Call Macro3 'Macro3
Call Macro4 'Macro4
End With
With Sheet8
Call Macro5 'Macro5
Call Macro6 'Macro6
End With
End sub
End With
End Sub