Is there a way to create a button in Excel to trigger a Macro. So say I have a button that says “Start” that I can click to start a Macro instead of using a hotkey.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Go into the VBA IDE (by clicking to edit your macro or similar). On the left hand side, right click your project, do
Insert,User Form. Drag acommand buttonover from the tools, double click it to generate an event handler.Fill in the code and run the macro to display the form.