I am using ClosedXml and I am getting the following error when trying create a range of headers from a range table.
The cells A13 and P13 are outside the range ''SalesOrderHeaderId_1'!A7:P8'.
Here is the C# Code I am using to try and create the range:
var sohRngTable = ws.Range("A7:P8");
var sohRngHeaders = sohRngTable.Range("A7:P7");
It fails on the second line trying to create sohRngHeaders, it acts like there is some default size for a worksheet but I am not sure and I can't figure out how to change it or get past this error.