Multiple sheets in a file #9
CMLWebDesign
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does this have the capabilites of having multiple worksheets with different data models for a single file? Would like to simplfy this code. example code: ` using (var package = new ExcelPackage())
{
var sheet01 = package.Workbook.Worksheets.Add("01");
sheet01.Cells["A1"].LoadFromCollection(sheet01Data);
Beta Was this translation helpful? Give feedback.
All reactions