Hi,
I want to create Worksheet with name vSN, if it IS NOT existing on Workbook. How?
I want to create Worksheet with name vSN, if it IS NOT existing on Workbook. How?
IEnumerable<Sheet> sheets = spreadSheet.WorkbookPart.Workbook.Descendants<Sheet>().Where(s => s.Name == vSN); if (sheets.Count() == 0) { ... }
Many Thanks & Best Regards, Hua Min