Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi ~~,
Yes it can be done with offset and resize propertis! ;) Code ------------------- Dim rng As Range, c As Range With ActiveSheet.AutoFilter.Range Set rng = .Offset(1).Resize(.Rows.Count - 1).SpecialCells(xlCellTypeVisible) End With For Each c In rng.Rows MsgBox c.Row c.Select Next ------------------- -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Return filtered values into report worksheet based on filtered valueon the data worksheet | Excel Worksheet Functions | |||
Excel arrows don't move black box but move the window | Excel Discussion (Misc queries) | |||
How do I stop making the spreadsht move when I move up/dwn/lt/rt? | Excel Worksheet Functions | |||
Be able to move not delete filtered records, to see the duplicats | Excel Worksheet Functions | |||
Move to displayed row of filtered list | Excel Programming |