vote up 1 vote down star

Is there a way in my C# code to replace the reference to Microsoft.Office.Interop.Excel.dll so that installing Excel on the user's machine is not necessary?

I have an application that creates an excel spreadsheet when requested by the user and it works great. However, I do not want the user to have to install Excel in order for my application to create this spreadsheet file.

My preferrence would be a drop-in replacement for Microsoft.Office.Interop.Excel.dll, but I'm open to other suggestions.

flag

closed as no longer relevant by BoltBait Jan 16 at 2:34

4 Answers

vote up 0 vote down check

Thanks for all the resonses. I presented my findings and the decision was made to simply require the client to install Excel in order to generate the spreadsheets.

link|flag
vote up 1 vote down

If you are open to a commercial product, Aspose.Cells will allow you to create and work with spreadsheet files without requiring the Excel software installed on the machine (whether it be client or server).

link|flag
vote up 1 vote down

This has worked great for me.

http://www.carlosag.net/Tools/ExcelXmlWriter/

link|flag
vote up 0 vote down

If you are open about other formats, like CSV check FileHelpers.

I've seen also ExcelPackage but it will constraint your clients to Office 2007.

link|flag
I'm not really open to other formats so CSV is out. The spreadsheet generated have formatting which needs to be retained. I will look into the ExcelPackage as we all have Office2007 anyway. Thanks. – BoltBait Jan 16 at 1:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.