Finding Total Number of ColumnLevels and Entire Rows of Visible Cells - which may have some columns that are not visible.

Setofskills

New Member
Joined
Aug 17, 2015
Messages
9
I am trying to remove entire rows that filter on certain criteria. I'm doing it by writing:

Range(Cells(3, 1), Cells(LastRow, LastColumn)).SpecialCells(xlCellTypeVisible).EntireRow.Delete

But I have grouped columns in my data so I get errors. My work around is to write:

ActiveSheet.Outline.ShowLevels RowLevels:=0, ColumnLevels:=3
Range(Cells(3, 1), Cells(LastRow, LastColumn)).SpecialCells(xlCellTypeVisible).EntireRow.Delete
ActiveSheet.Outline.ShowLevels RowLevels:=0, ColumnLevels:=1

My question is:


  1. how can I find out how many ColumnLevels I have so that I can replace the 3 in "ColumnLevels:=3" to something like ColumnLevels:=MaxColumnLevels?
  2. OR how can I delete an entire row when for visible cells that includes collapsed/grouped columns?

Thanks in advance.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple

Forum statistics

Threads
1,214,834
Messages
6,121,877
Members
449,056
Latest member
ruhulaminappu

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