Hi,
I launch a userform from a button on the main page of my file.
The userform appears with 6 option buttons and a start/cancel button. Each selected option on pressing start runs a different macro.
At the end of every macro before Exit Sub there is a call to the userform so that it always re-appears allowing the operator to run any number of macro options until they decide to dismiss the userform using cancel.
I wanted to also add an option that calls all these macros consecutively something the operator may want to do. However the userform call at the end of each macro screws the possibility.
Call Macro1
---Macro 1 runs then displays the userform
'need to skip userform call
Call Macro2
Call macro3
Anyone see how I can get around this without copying all the macros code into another module without calls to userform.
That would be a last resort!
I launch a userform from a button on the main page of my file.
The userform appears with 6 option buttons and a start/cancel button. Each selected option on pressing start runs a different macro.
At the end of every macro before Exit Sub there is a call to the userform so that it always re-appears allowing the operator to run any number of macro options until they decide to dismiss the userform using cancel.
I wanted to also add an option that calls all these macros consecutively something the operator may want to do. However the userform call at the end of each macro screws the possibility.
Call Macro1
---Macro 1 runs then displays the userform
'need to skip userform call
Call Macro2
Call macro3
Anyone see how I can get around this without copying all the macros code into another module without calls to userform.
That would be a last resort!