Macro to save a workbook as an add in

Misca

Well-known Member
Joined
Aug 12, 2009
Messages
1,760
Office Version
  1. 365
Platform
  1. Windows
Hello, Experts!

I'm trying to write a macro to save my workbook as an .xla Add In. I can do it manually and I have recorded the macro so I can see what the code should be but I just can't get it work.

I'm using Excel 2003 on XP and here's my code so far:

Code:
Dim WBName As String
Dim AI as Excel.AddIn

ThisWorkbook.Save
ThisWorkbook.IsAddin = True

WBName = Application.UserLibraryPath & "\MyFunctions.xla"
Application.ActiveWorkbook.SaveAs Filename:=WBName, FileFormat:=xlAddIn

Set AI = Application.AddIns.Add(Filename:=WBName)
   AI.Installed = True

Can anybody help me?
:confused:
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,225,477
Messages
6,185,210
Members
453,283
Latest member
Shortm88

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