Closed DaleBinghamSoteriaSoft closed 2 years ago
Need to add in the merged cells for borders and such to work well
MergeCells mergeCells = new MergeCells();
mergeCells.Append(new MergeCell() { Reference = new StringValue("A1:F1") });
mergeCells.Append(new MergeCell() { Reference = new StringValue("A2:F2") });
// save the merged cells
worksheetPart.Worksheet.InsertAfter(mergeCells, worksheetPart.Worksheet.Elements<SheetData>().First());
// Save the new worksheet.
workbookpart.Workbook.Save();
Is your feature request related to a problem? Please describe. The POAM in XLSX is not 100% compatible with eMASS format so we should update that.
Describe the solution you'd like A better format matching eMASS POAM format.
Describe alternatives you've considered n/a
Additional context n/a