You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In EPPlus, it implements a string indexer for cell range selection
worksheet.Cells["B1"].Value = "This is cell B1"; // Sets the value of Cell B1
worksheet.Cells[1, 2].Value = "This is cell B1"; // Also sets the value of Cell B1
worksheet.Cells["A1:B3,D1:E57"].Style.NumberFormat.Format = "#,##0"; //Sets the number format for a range containing two addresses.
worksheet.Cells["A:B"].Style.Font.Bold = true; //Sets font-bold to true for column A & B
In EPPlus, it implements a string indexer for cell range selection
Reference
https://github.com/EPPlusSoftware/EPPlus/wiki/Addressing-a-worksheet
The text was updated successfully, but these errors were encountered: