Skip to content
forked from mstum/Simplexcel

A 100% managed code (.net Standard 2.0/2.1/Core/.net Framework 4.5+) library to generate Excel .xlsx Workbooks. Can be safely used on a server, no COM Interop or other unsafe/unsupported operations.

License

Notifications You must be signed in to change notification settings

0xced/Simplexcel

 
 

Repository files navigation

Simplexcel

Official take over of the original project by Michael Stum.

NuGet

This is a simple .xlsx generator library for .NET Framework (4.6.2 and later), .NET Standard 2.0, and .NET Standard 2.1.

It does not aim to implement the entirety of the Office Open XML Workbook format and all the small and big features Excel offers. Instead, it is meant as a way to handle common tasks that can't be handled by other workarounds (e.g., CSV Files or HTML Tables) and is fully supported under ASP.NET and ASP.NET Core (unlike, say, COM Interop which Microsoft explicitly doesn't support on a server).

Features

  • You can store numbers as numbers, so no more unwanted conversion to scientific notation on large numbers!
  • You can store text that looks like a number as text, so no more truncation of leading zeroes because Excel thinks it's a number
  • You can have multiple Worksheets
  • You have basic formatting: Font Name/Size, Bold/Underline/Italic, Color, Border around a cell
  • You can specify the size of cells
  • Workbooks can be saved compressed or uncompressed (CPU Load vs. File Size)
  • You can specify repeating rows and columns (from the top and left respectively), useful when printing
  • Fully supported in ASP.NET, ASP.NET Core and Windows Services
  • Supports both .NET Framework and .NET

Usage

See USAGE.md for instructions how to use.

Release Notes

See CHANGELOG.md for the release notes.

License

See LICENSE.txt for the license (MIT).

About

A 100% managed code (.net Standard 2.0/2.1/Core/.net Framework 4.5+) library to generate Excel .xlsx Workbooks. Can be safely used on a server, no COM Interop or other unsafe/unsupported operations.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 96.5%
  • PowerShell 3.4%
  • HTML 0.1%