Using Interop.Excel I use:
CInt(oExcel.ActiveSheet.Cells(1, oExcel.ActiveSheet.Columns.Count).End(Microsoft.Office.Interop.Excel.XlDirection.xlToLeft).Column())
To get the number of active columns on row 1.
But how does one implement this in openxml?
I'm not very familiar with Interop.Excel but that code looks like you're getting the last active cell rather than the number of active cells in the sheet (although I could be way off the mark).
I think you can achieve either using OpenXML with something like this:
Given the following sheet
the output from the above code is when passing
1
as therowNumber
is:The
CellReference
is the reference you would use in a formula (e.g.A1
) so you might need to parse that if you want the column as a number. The code also assumes the cells are in order which I'm pretty certain Excel ensures although I don't think the OpenXML schema mandates it. If this causes an issue it could be fixed by iterating the cells and keeping track of the largest column.Note: the VB might not be idiomatic as I used the Telerik Converter to convert it from C# to VB.