Expand Columns but only

drom

Well-known Member
Joined
Mar 20, 2005
Messages
527
Office Version
  1. 2021
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
  7. 2007
Hi and Thanks in advance!!

I have a few sheets with many .Outlineed columns (Some of then Collapsed some of then expanded
For this eg my OutLined Columns are:
  • Columns(C:E)
  • Columns(H:J)
  • Columns(M:P)
  • Columns(V:W)
This is just a eg, Actually I do not know the real Outlined Columns

If I have in range("A1") the value N

I would like to check if N6 is within a Outlined group of columns and show this columns ( Keep the other Coutlined Columns the way they were)
So in my Eg: Expand Columns (M:P) if they are actually collapsed


Any Idea??




VBA Code:
    ActiveSheet.Outline.ShowLevels RowLevels:=8, ColumnLevels:=8   'Expand_All
    ActiveSheet.Outline.ShowLevels RowLevels:=1, ColumnLevels:=1   'Collapse_All
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
VBA Code:
          Columns(xCOL).ShowDetail = True
          Rows(xRow).ShowDetail = True
Does the job
 
Upvote 0

Forum statistics

Threads
1,214,792
Messages
6,121,612
Members
449,038
Latest member
apwr

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