I want to have a button in the sheet that you can press that will run part of the add in. Is this possible?
相关问题
- Excel sunburst chart: Some labels missing
- Error handling only works once
- Error handling only works once
- Excel formula in VBA code
- Excel VBA run time error 450 from referencing a ra
相关文章
- Get column data by Column name and sheet name
- programmatically excel cells to be auto fit width
- Unregister a XLL in Excel (VBA)
- Unregister a XLL in Excel (VBA)
- How to prevent excel from truncating numbers in a
- numeric up down control in vba
- Declare a Range relative to the Active Cell with V
- What's the easiest way to create an Excel tabl
Yes you can.
I am assuming that you have an Add-In called
MyAddIn.xlam
and you have a procedure called `Sample()' in the module of the Add-In. I am also assuming that the Add-In is installed.Replace the file
MyAddIn.xlam
with the relevant Add-In name and replace the procedureSample
with the relevant procedure name.