Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

read .xlsx without Excel and OLEDB

Is there any chance to read .xlsx files in C# without having Excel installed on the client, and with no OLEDB connection available?

The application is a Winforms project written in VS2005 C# .NET Framework 2.0.

like image 485
Sunlog Avatar asked Nov 05 '10 13:11

Sunlog


1 Answers

How about this one here:

EPPlus-Create advanced Excel 2007 spreadsheets on the server

EPPlus is a .net library that reads and writes Excel 2007 files using the Open Office Xml format (xlsx). EPPlus supports ranges, cell styling, charts, pictures, shapes, named ranges, autofilters and a lot of other stuff.

like image 69
marc_s Avatar answered Oct 02 '22 15:10

marc_s