Expand Columns but only

drom

Well-known Member
Joined
Mar 20, 2005
Messages
528
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

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
VBA Code:
          Columns(xCOL).ShowDetail = True
          Rows(xRow).ShowDetail = True
Does the job
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,834
Members
449,192
Latest member
mcgeeaudrey

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