Home |
Search |
Today's Posts |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
This will do it on cell A1 in the active sheet Sub MakeButton() Dim myButton as Button ActiveWindow.Zoom = 100 'if not, there may be an alignment problem when date buttons are clicked With Activesheet.Range("A1") Set myButton = ActiveSheet.Buttons.Add (.Left, .Top, .Width, ..Height) With myButton 'change properties as required .Placement = xlMove .Caption = "mytext" .HorizontalAlignment = xlCenter .VerticalAlignment = xlBottom .Orientation = xlUpward .OnAction = "myMacro" End With 'myButton End With ' 'Range "a1" 'Scroll to the button Application.GoTo Reference:=Activesheet.Range("A1") _ , Scroll:=True Set myButton = Nothing end sub regards Paul "Al" <al_dempsey@hotmail wrote in message ... How do I turn a specfic cell into a button that when pressed runs a specific macro? Thx in Advance, Al |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
button in a cell to activate a macro | Excel Worksheet Functions | |||
make a cell into a button | Excel Discussion (Misc queries) | |||
Attaching Macro to Cell instead of button? | Excel Discussion (Misc queries) | |||
Inserting a button into a cell and linking it to a macro | Excel Discussion (Misc queries) | |||
How to make a macro run on the next cell | Excel Discussion (Misc queries) |