I know how to close all the groups at once using outline in the VBA like this:
'''' Close outline groups.
With sh.Outline
.ShowLevels _
RowLevels:=1, _
ColumnLevels:=1
End With
I also know how to open all the groups at once using outline in the VBA like this:
'''' Open outline groups.
With sh.Outline
.ShowLevels _
RowLevels:=2, _
ColumnLevels:=2
End With
But, how on earth can I open/close a single group!? And how do I detect if it is opened/closed!?