Hi alfredo
It sure is, try this
Dim OptCaption as String
OptCaption= Sheets("Sheet1").Range("A1")
OptionButton1.Caption= OptCaption
Dave
OzGrid Business Applications
Dave: I was thinking of assigning a macro to a button from name stored in cell. Can you help with that?
Dave: I was thinking of assigning a macro to a button from name stored in cell. Can you help with that?
Re: Dave: I was thinking of assigning a macro to a button from name stored in cell. Can you help with that?
alfredo, this code is for assigning a macro to a CommandButton from the "Forms" toolbar.
Dim CmdBtnMacro as String
CmdBtnMacro = Sheets("Sheet1").Range("A1")
ActiveSheet.Shapes("Button 13").OnAction = CmdBtnMacro
Dave
OzGrid Business Applications
Re: Dave: THANK YOU VERY MUCH AND IVAN TOO!!!!!