Assume I have an Excel add-in called test.xlam that contains this procedure:
Sub TestAbb()
Worksheets("Sheet1").Range("A1") = "Hello world"
End Sub
How do I call this procedure in Excel?
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.
You can call it in one of two ways:
1) Press Alt+F8 to see a list of all macros and then click run
2) Assign the macro a shortcut key combination – such as:
And then simply press ctrl+shift+I (in this example) to run it directly