Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When you set the autofilter on, how can you tell what rows have been hidden.
I am starting at the top of my workshett and using: ActiveCell.Offset(1, 0).Select. This returns rows that are hidden, and I want to ignore these rows? thanks Greg |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this...
Public Sub FindVisible1() With ActiveSheet.AutoFilter.Range .Offset(1, 0) _ .Resize(.Rows.Count - 1, .Columns.Count).Select End With End Sub -----Original Message----- When you set the autofilter on, how can you tell what rows have been hidden. I am starting at the top of my workshett and using: ActiveCell.Offset(1, 0).Select. This returns rows that are hidden, and I want to ignore these rows? thanks Greg . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
opening a group but keep hidden rows hidden | Excel Discussion (Misc queries) | |||
Hidden rows columns won't stay hidden | Excel Worksheet Functions | |||
I need my Hidden Rows to stay hidden when I print the sheet. | Excel Discussion (Misc queries) | |||
Is it possible to tell if a cell is hidden by 'Autofilter' | Excel Programming | |||
Is it possible to tell if a cell is hidden by 'Autofilter' | Excel Programming |