Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hello,
If you have seveal buttons to activate different macros, can you put all of the buttons into a drop-down? As always, any help greatly appreciated. |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi,
Well maybe, sort of. First, where is the drop down - is it in the spreadsheet, on a toolbar, on a menu, or on a user form? What version of Excel are you using? -- If this helps, please click the Yes button. Cheers, Shane Devenshire "JOHN" wrote: Hello, If you have seveal buttons to activate different macros, can you put all of the buttons into a drop-down? As always, any help greatly appreciated. |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I am using Excel 2007 and I would put the dropDown on the sheet,in the cells
that I want to paste the data. "Shane Devenshire" wrote: Hi, Well maybe, sort of. First, where is the drop down - is it in the spreadsheet, on a toolbar, on a menu, or on a user form? What version of Excel are you using? -- If this helps, please click the Yes button. Cheers, Shane Devenshire "JOHN" wrote: Hello, If you have seveal buttons to activate different macros, can you put all of the buttons into a drop-down? As always, any help greatly appreciated. |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
With the names of your macros in a DV dropdown list.
Private Sub Worksheet_Change(ByVal Target As Range) Dim rtext As String If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub rtext = Target.Value Application.Run rtext End Sub Gord Dibben MS Excel MVP On Fri, 27 Feb 2009 15:40:01 -0800, JOHN wrote: Hello, If you have seveal buttons to activate different macros, can you put all of the buttons into a drop-down? As always, any help greatly appreciated. |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thank you for your help
"Gord Dibben" wrote: With the names of your macros in a DV dropdown list. Private Sub Worksheet_Change(ByVal Target As Range) Dim rtext As String If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub rtext = Target.Value Application.Run rtext End Sub Gord Dibben MS Excel MVP On Fri, 27 Feb 2009 15:40:01 -0800, JOHN wrote: Hello, If you have seveal buttons to activate different macros, can you put all of the buttons into a drop-down? As always, any help greatly appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro Buttons | Excel Discussion (Misc queries) | |||
Macro Buttons | Excel Discussion (Misc queries) | |||
look for buttons in a macro | Excel Discussion (Misc queries) | |||
Macro buttons disappeared | Excel Worksheet Functions | |||
Format Macro Buttons? | Excel Discussion (Misc queries) |