Hope you can help. I am using 2003. I am using many pages in a workbook that uses buttons. I would now like the option to toggle to another page & then toggle back to my previous page, before exiting to the main contents page.
I only seem to have the capability (as I am new to this) to ask the buttons to go to specific pages. The below takes you to the information page, what code will I need to get back to my original page. I want to be able to enter to the imformation page from any of the 35 other pages, but I need it to remember what page I have just come from to take me back there.
Private Sub CommandButton9_Click()
'Application.ScreenUpdating = False
If MsgBox("Do you want to toggle to the additional information page? Click Yes to proceed and No to return", vbYesNo + vbCritical, "Toggle to Additional inforamtion page?") = vbNo Then Exit Sub
Sheet10.Select
'Application.ScreenUpdating = True
End Sub
Thanking you in advance of any help available x
I only seem to have the capability (as I am new to this) to ask the buttons to go to specific pages. The below takes you to the information page, what code will I need to get back to my original page. I want to be able to enter to the imformation page from any of the 35 other pages, but I need it to remember what page I have just come from to take me back there.
Private Sub CommandButton9_Click()
'Application.ScreenUpdating = False
If MsgBox("Do you want to toggle to the additional information page? Click Yes to proceed and No to return", vbYesNo + vbCritical, "Toggle to Additional inforamtion page?") = vbNo Then Exit Sub
Sheet10.Select
'Application.ScreenUpdating = True
End Sub
Thanking you in advance of any help available x