I currently have a worksheet with many existing column groupings. I want to remove ALL those groups. The following code does not work:
cells.UngroupColumns(cells.MinColumn, cells.MaxDataColumn + 1);
Any suggestions?
I currently have a worksheet with many existing column groupings. I want to remove ALL those groups. The following code does not work:
cells.UngroupColumns(cells.MinColumn, cells.MaxDataColumn + 1);
Any suggestions?
This works:
cells.UngroupColumns(cells.MinColumn, cells.MaxColumn + 1);