collapsing grouped columns...

sadams1

Board Regular
Joined
Aug 19, 2006
Messages
219
I found this:

Sub Collapse_All()mp
ActiveSheet.Outline.ShowLevels RowLevels:=1, ColumnLevels:=1
End Sub

However, when expanding the groups, they are still expanded.
For example, there are 5 groups expanded. They get collapsed with the above code. The 2nd group is expanded & all subgroups are fully expanded.

Is is possible to collapse each subgroup so when expanded they are still collapsed & have to be individually expanded?
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Just walk your way up the levels:
Code:
Sub TotalCollapse()
   With ActiveSheet.Outline
        .ShowLevels ColumnLevels:=4
        .ShowLevels ColumnLevels:=3
        .ShowLevels ColumnLevels:=2
        .ShowLevels ColumnLevels:=1
    End With
End Sub

Sub LoopedCollapse()
    For i = 4 To 1 Step -1
        ActiveSheet.Outline.ShowLevels ColumnLevels:=i
    Next i
End Sub
 
Last edited:
Upvote 0
just walk your way up the levels:
Code:
sub totalcollapse()
   with activesheet.outline
        .showlevels columnlevels:=4
        .showlevels columnlevels:=3
        .showlevels columnlevels:=2
        .showlevels columnlevels:=1
    end with
end sub

sub loopedcollapse()
    for i = 4 to 1 step -1
        activesheet.outline.showlevels columnlevels:=i
    next i
end sub



sweet! Thank you!
 
Upvote 0

Forum statistics

Threads
1,215,366
Messages
6,124,514
Members
449,168
Latest member
CheerfulWalker

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top