Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like a macro to stop at certain point to allow for input of variable
information, then continue on with the rest of the macro. Is this possible or do I have to set up two different macros? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could use a msgbox and then check what button the user hit.
You could use an inputbox (or application.inputbox) to get lots of different types. You could even develop a userform that gets as much information from the user. But then the macro isn't really stopping. It's just waiting. On the other hand, you could have two macros, too. The choice is yours. Rufushenry wrote: I would like a macro to stop at certain point to allow for input of variable information, then continue on with the rest of the macro. Is this possible or do I have to set up two different macros? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Where are the data coming from? Is it user input? If so use an input box and macro execution will stop until the inputbox is closed MyVar = InputBox("Please enter variable xxx") Mike "Rufushenry" wrote: I would like a macro to stop at certain point to allow for input of variable information, then continue on with the rest of the macro. Is this possible or do I have to set up two different macros? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro-continue to paste last column | Excel Discussion (Misc queries) | |||
macro to ask yes/no question and continue based on answer | Excel Discussion (Misc queries) | |||
VB code to continue macro | Excel Discussion (Misc queries) | |||
Can you pause a macro in excel to input data and continue? | Excel Discussion (Misc queries) | |||
Create a button to continue old macro execution | Excel Discussion (Misc queries) |