Issue: Excel freezes when expanding group of rows which contain conditional formatting. I can save using CTRL + S, but worksheet functionality and toolbar buttons lock up.
Working solution: Deleting the conditional formatting, which consists of:
- Rule:
=AND($C7<>"",$C7<>0) - Applies to:
=$C$7:$AB$84
Excel version: Excel 2016
File Type: .xlsb
Background details: Rows were initially grouped with a macro. VBA code which groups the rows:
ws.Range(ws.Cells(firstRow, 1), ws.Cells(lastRow, 1)).Rows.Group
ws.Outline.ShowLevels RowLevels:=1
Screenupdating is set to True. There are no other row groups. Beyond failure to expand the group, I have not come accross any other issues with the file.
How can I prevent this without deleting the conditional formatting?