I have template .xlt excel files and try to show datas at .xltx or xlsx excel files.
ExcelApp = new Microsoft.Office.Interop.Excel.Application();
I try to open file with xlt extension as xltx
ExcelWorkBook = ExcelApp.Workbooks.Open(fileName,…)
When I open the file as named fileName, i get the the error
Exception from HRESULT 0x800A03EC
at this line
Range r = (Range) ExcelWorkBook.Columns["I", 0];