Closing Grouped columns

ryancey

New Member
Joined
Oct 11, 2005
Messages
46
Does anyone know how to close grouped columns in VBA.
I have a macro that goes through about 50 tabs and groups the columns but leaves the group open. I'd love to know the syntax to close the group that I just created on each tab. Thanks.
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
I'm not sure what eg means. Here's what I'm doing.
I'm using Selection.Columns.Group to group a range of selected column. That leaves me with the little "-" minus sign at the top of the worksheet. I'd like to put a line below the Selection.Columns.Group line to close the group and leave me with the little "+" plus sign.
Thanks.
 
Upvote 0
Did you try what I suggested?

Code:
Sub Test()
    Columns("D:F").Select
    Selection.Columns.Group
    Worksheets("Sheet1").Outline.ShowLevels columnLevels:=1
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,835
Messages
6,121,880
Members
449,057
Latest member
Moo4247

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