Hi,
I’m trying to generate a report with multi level grouping of rows.
I have generated 1st level group as below:
worksheet.Cells.GroupRows(5, 7, true);
2nd level group is generated as below:
worksheet.Cells.GroupRows(6, 7, true);
If we expand first level group, underlying child group(s) should stay collapsed until we expand them explicitly.
This issue is similar to Collapse and Expand multi level groups
I’m using latest Aspose.Cells 22.3.0 and don’t see the expected behavior.
Is this a bug or do we need any tweaks in our code to get this working?