ExcelLabs

ExcelLabs is an Excel Helper library written in C#.

Stars
10
Committers
2

Bot releases are hidden (Show)

ExcelLabs - New Functions & .NET 8 Demo & Fix Excel Close Issue Latest Release

Published by fatihyildizhan 4 months ago

What's Changed

// call save function
ExcelLabs.SaveFile(title, path, sheetName, cells);

// call safe save function
ExcelLabs.SaveFileWithCleanXmlText(title, path, sheetName, cells);

// clean not-allowed XML characters
string safeToWriteText = ExcelLabs.CleanTextForXml(title + " safe");
Console.WriteLine("Safe text: " + safeToWriteText);

// convert integer to Excel Column Letter like 1 to A
string excelColumnLetter1 = ExcelLabs.ColumnIndexToColumnLetter(1);
Console.WriteLine("1 to column letter: " + excelColumnLetter1); // A

// convert integer to Excel Column Letter like 1 to G
string excelColumnLetter7 = ExcelLabs.ColumnIndexToColumnLetter(7);
Console.WriteLine("7 to column letter: " + excelColumnLetter7); // G

Full Changelog: https://github.com/doxa-labs/ExcelLabs/compare/v2.2.1...v3.0.3

ExcelLabs - Add .NET 7 Demo with the new console template

Published by fatihyildizhan over 1 year ago

What's Changed

Full Changelog: https://github.com/doxa-labs/ExcelLabs/compare/v2.2.0...v2.2.1

ExcelLabs - Add .NET6 Demo with the new console template

Published by fatihyildizhan almost 3 years ago

What's Changed

Full Changelog: https://github.com/doxa-labs/ExcelLabs/compare/v2.1.0...v2.2.0

ExcelLabs - Demo for .NET 5 & .NET Framework

Published by fatihyildizhan over 3 years ago

ExcelLabs - Excel.Labs Tools Version 2.0.0 Release Notes

Published by fatihyildizhan about 5 years ago

  • Using OpenXml to create Excel files instead of Microsoft.Interop
  1. Create a Cell List
  2. Add Some Data
  3. Call SaveFile Function
ExcelLabs - Excel.Labs Tools Version 1.1.0 Release Notes

Published by fatihyildizhan about 5 years ago

  • Using Microsoft.Interop

Usage Steps

  1. Init ExcelLabs
  2. Create a Cell List
  3. Add Some Data
  4. Call Save Function
ExcelLabs - Excel.Labs Tools Version 1.0.1 Release Notes

Published by fatihyildizhan about 5 years ago

This is a pre-release version to test on NuGet.

ExcelLabs - Excel.Labs Tools Version 1.0.0 Release Notes

Published by fatihyildizhan about 5 years ago

This is a pre-release version to test on NuGet.