Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I create an Excel compatible Spreadsheets on the server side in C#?

I'd like to make server-side excel compatible spreadsheets that maybe use OpenXML or a structured data format.

I've used Office Interop before to generate Excel spreadsheets, but those apps run on a PC that has office installed.

For this web project I'm building, the server doesn't have Office installed (and they don't want to buy it).

What's the best library for me to use that allows me to generate Office compatible spreadsheets from a windows server 2k8 using IIS7?

Some additional requirements:

  • Ideally, free
  • Allows for simple cell formulas that can be inserted at runtime
like image 253
CVertex Avatar asked Sep 28 '09 09:09

CVertex


1 Answers

try ExcelPackage at codeplex. its simple and efficient.

like image 106
TheVillageIdiot Avatar answered Oct 15 '22 09:10

TheVillageIdiot