Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I create a macro that goes to one cell
then waits until I enter new data, then goes to another cell and waits until I enter new data etc? thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about something like
sub Enter_Data() dim NewValue NewValue = inputbox("Enter the value for cell A1: ") range("a1").value = NewValue NewValue = inputbox("Enter the value for cell G2: ") range("g2").value = NewValue NewValue = inputbox("Enter the value for cell I8: ") range("i8").value = NewValue end sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Charts not recognizing source data if original linked data is changed. | Charts and Charting in Excel | |||
Line Graph Data Recognition | Charts and Charting in Excel | |||
Must move mouse before entering data? | Excel Discussion (Misc queries) | |||
When entering data into excel spreadsheet cell, the page just jum. | Excel Discussion (Misc queries) | |||
record macros in excel and get data from webpages | Excel Worksheet Functions |