Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet that I have to use two or more macros. I have to
change/input numbers in different cells at different places in the process. I wondered if there was a way to set a pause at these points of input using one macro with a pause and continue function. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here's some sample code to show one way you can input two numbers in two
different cells..........modify to suit Sub InputData() Dim k, l 'As Long k = InputBox("Enter First Number:") Range("g1").Value = k l = InputBox("Enter second number:") Range("g2") = l End Sub hth Vaya con Dios, Chuck, CABGx3 "Hutch" wrote: I have a spreadsheet that I have to use two or more macros. I have to change/input numbers in different cells at different places in the process. I wondered if there was a way to set a pause at these points of input using one macro with a pause and continue function. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Macro Pause during Dialog Box data entry | Excel Discussion (Misc queries) | |||
Help PLEASE! Not sure what answer is: Match? Index? Other? | Excel Worksheet Functions | |||
Inserting Filtered RC cell information into other worksheets | Excel Discussion (Misc queries) | |||
Macro to pause for user input in dialog box | Excel Discussion (Misc queries) |