Skip to content

Instantly share code, notes, and snippets.

@documentprocessing
Created November 23, 2024 05:44
Insert Text in Excel XLSX using C#
Workbook workbook = new Workbook();
workbook.ApplyFontStyle("Arial", 14);
Worksheet worksheet = new Worksheet(workbook);
worksheet.insertValue("A10", 10, "some data", 0);
worksheet.saveDataToSheet(0);
workbook.Save("spreadsheet.xlsx");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment