Install App

~repack~: Microsoft Excel 15.0 Object Library Download

If you see an error stating "MISSING: Microsoft Excel 15.0 Object Library," it usually means the code was written for Excel 2013 but is being run on a machine with a different version of Office.

// Close the workbook and Excel application workbook.Close(); excelApp.Quit();

// Create an Excel application object Excel.Application excelApp = new Excel.Application(); Microsoft Excel 15.0 Object Library Download

After installation, the library will be automatically registered on your system.

You can find the primary interop assemblies (PIAs) on NuGet under the package name MSOffice.Object.Library version 15.0. How to Enable the 15.0 Object Library in Excel If you see an error stating "MISSING: Microsoft Excel 15

If you are using Visual Studio, you can use the NuGet Package Manager to install the Microsoft Excel 15.0 Object Library.

using Excel = Microsoft.Office.Interop.Excel; How to Enable the 15

Sometimes, Office 2013 is installed, but your VBA project cannot find the Object Library. The reference might show as "MISSING: Microsoft Excel 15.0 Object Library."

Late binding does not require a specific Object Library reference at compile time.

Open Windows File Explorer and search for EXCEL.EXE in C:\Program Files (x86)\Microsoft Office\Office15\ (32-bit Office on 64-bit Windows) or C:\Program Files\Microsoft Office\Office15\ (64-bit Office).