Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
what is the correct syntax for selection a sheet by the user via mouse click? the user click on the selected sheet as the input for the macro. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe a worksheet event:
Private Sub Worksheet_Activate() 'your code here End Sub or A workbook event: Private Sub Workbook_SheetActivate(ByVal Sh As Object) 'your code here End Sub Yossi evenzur wrote: Hi what is the correct syntax for selection a sheet by the user via mouse click? the user click on the selected sheet as the input for the macro. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Multiple cell selection on one click! | Excel Discussion (Misc queries) | |||
How to use selection change instead of double click event? | Excel Discussion (Misc queries) | |||
Copy Rows to New Sheet based on User Selection in Drop-down List | Excel Programming | |||
Right click and iterate through selection | Excel Programming | |||
How to: Make user click End User License Agreement acceptance | Excel Programming |