hi, everyone
when my workbook open then add a commandbutton to the last sheet of workbook with macro
like here
add button and add this line to call macro
thnx![]()
Private Sub CommandButton1_Click() Call Macro1 End Sub
hi, everyone
when my workbook open then add a commandbutton to the last sheet of workbook with macro
like here
add button and add this line to call macro
thnx![]()
Private Sub CommandButton1_Click() Call Macro1 End Sub
Use Code-Tags for showing your code :
Please mark your question Solved if there has been offered a solution that works fine for you
If You like solutions provided by anyone, feel free to add reputation using STAR *
You could record a macro to add a button to the last sheet.
The use this and edit so that you know it is the last sheet.
Then you can place it in the WorkBook Open and it will work.
---
Hans
"IT" Always crosses your path!
May the (vba) code be with you... if it isn't; start debugging!
If you like my answer, Click the * below to say thank-you
Thanx for the reply dear Keebellah
i found this code, but its not creating a active x button, will you please give any suggestion
![]()
Sub CreateButton() ActiveSheet.Buttons.Add(199.5, 20, 81, 36).Select Selection.Name = "New Button" Selection.OnAction = "Macro1" ActiveSheet.Shapes("New Button").Select Selection.Characters.Text = "Print" End Sub
Like I said record your OWN macro and then edit it.
The macro works but my guess it is not adding the button to the sheet you want.
It does it in the "ACTIVE" sheet. so look there.
Just copy this macro in the Thisworkbook VBA
![]()
Private Sub Workbook_Open() Worksheets(ActiveWorkbook.Worksheets.Count).Select ActiveSheet.Buttons.Add(199.5, 20, 81, 36).Select Selection.Name = "New Button" Selection.OnAction = "Macro1" ActiveSheet.Shapes("New Button").Select Selection.Characters.Text = "Press Me" Selection.OnAction = "Macro1" End Sub
Just copy this macro in the Thisworkbook VBA
![]()
Private Sub Workbook_Open() Worksheets(ActiveWorkbook.Worksheets.Count).Select ActiveSheet.Buttons.Add(199.5, 20, 81, 36).Select Selection.Name = "New Button" Selection.OnAction = "Macro1" ActiveSheet.Shapes("New Button").Select Selection.Characters.Text = "Press Me" Selection.OnAction = "Macro1" End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks