I am trying to get the first 4 rows of an xlsx file to repeat at the top of each page when printed. I am using the Open XML SDK to accomplish this.
My file is bei
This is possible via ClosedXML
Worksheet.PageSetup.SetRowsToRepeatAtTop(1, 5);