Howdy, folks:
It's time for my dumb-question of the day.
I have a list of data - somw 6000 rows. I set a filter on that data and get the records required. I want to move the activeCell to the first record that's shown. Any ideas?
Bob
Howdy, folks:
It's time for my dumb-question of the day.
I have a list of data - somw 6000 rows. I set a filter on that data and get the records required. I want to move the activeCell to the first record that's shown. Any ideas?
Bob
Last edited by bstubbs; 02-20-2013 at 02:03 PM.
This should do it
![]()
Sub Macro1() Dim rng As Range Set rng = Range("A2", Cells(Rows.Count, "A").End(xlUp)).SpecialCells(xlCellTypeVisible).Cells(1) MsgBox "The first visible cell is " & rng.Address rng.Select End Sub
Thanks,
Mike
If you are satisfied with the solution(s) provided, please mark your thread as Solved.
Select Thread Tools-> Mark thread as Solved.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks