CommandButton Macro

srizki

Well-known Member
Joined
Jan 14, 2003
Messages
1,851
Office Version
  1. 365
Platform
  1. Windows
Good day every one,

I want to assign a macro to a commandbutton, that should say, for example, "DO NOT PRINT" when the button is clicked or whatever message I assign. I need a standard code, so I can chage it accordingly.

Thanks

<!-- Converted from text/rtf format -->Sohail Rizki
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Insert a button from the Forms menu.
When it asks to Assign Macro, click NEW and then use this macro
Code:
Sub Button1_Click()
    MsgBox "Hello"
End Sub
 
Upvote 0
Try with a button from the Controls toolbar (ActiveX control)

Code:
Private Sub CommandButton1_Click()
MsgBox "Do not print", vbExclamation
End Sub
 
Upvote 0
Thank you very much to both of you.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top