ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Select sheet, Pause till Enter pressed, return to previous sheet (https://www.excelbanter.com/excel-programming/391190-select-sheet-pause-till-enter-pressed-return-previous-sheet.html)

Russ3Z

Select sheet, Pause till Enter pressed, return to previous sheet
 
As the title says, I have a macro which, when run, is designed simply
to switch to a sheet of reference materials, pause till the user hits
enter or some other input, then returns to the previous sheet.

I originally tried using a MsgBox, but it blocks the information on
the screen, so I am hoping there is some Other way to do this.

Thanks,
Russ


Incidental

Select sheet, Pause till Enter pressed, return to previous sheet
 
Hi Russ

You could try using application.sendkeys,

add this code to a new module

Sub ShowSheet()
Sheets("sheet3").Activate 'Change to the name of the sheet you want to
show
End Sub

Then in the sheet you want to show until the user presses enter (for
this code it's sheet3) add the following code

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.SendKeys (ENTER)
Sheets("sheet2").Activate
End Sub

this will change back to sheet2 when the user presses enter

hope this helps you out

S



All times are GMT +1. The time now is 07:18 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com