artsandcraftshome
Technical User
I have a macro that needs input from the operator that is found on another sheet. I want to display this sheet with the appropriate row highlighted, allow the operator to "Cursor right or left", record the value in the appropriate cell, then have a way for the operator to return to the macro. I thought I could display the sheet with a Msg box telling them to cursor to find the value, but there needs to be a way to return to the macro.
So far I have this:
'get the row number:
SCDMAX = Range("D45"
.Value
'select the sheet with the data:
Sheets("PDD TABLES"
.Select
'select the row:
Row("SCDMAX"
.Select
-->this is where I would put up a MsgBox telling them what to do but I need a way to return when done
If there's a way to retrieve the cell address (or contents) that the operator chose (e.g. they left the cursor on that cell) that would be even better!
thanks for any help
John
So far I have this:
'get the row number:
SCDMAX = Range("D45"
'select the sheet with the data:
Sheets("PDD TABLES"
'select the row:
Row("SCDMAX"
-->this is where I would put up a MsgBox telling them what to do but I need a way to return when done
If there's a way to retrieve the cell address (or contents) that the operator chose (e.g. they left the cursor on that cell) that would be even better!
thanks for any help
John