Ungroup Excel columns
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
hello, i have excel from which i need to read the data. Excel having groued columns so iam not able to read those columns. can any one tell me how to un group excel column and save tht changed excel. thnaks in advance.
-
hello, i have excel from which i need to read the data. Excel having groued columns so iam not able to read those columns. can any one tell me how to un group excel column and save tht changed excel. thnaks in advance.
-
private void UnGroupRowsAndColumns(Workbook workbook) { Worksheet worksheet = workbook.Worksheets[0]; worksheet.Cells.UngroupRows(0, 9); worksheet.Cells.UngroupColumns(0, 1); }