this method works
Code:With Range("A10") Range(.Offset(1), Cells(Rows.Count, .Column)).SpecialCells(xlCellTypeVisible).Cells(1, 1).Select End With
Dim cel As Range
Set cel = ActiveSheet.Range("A10")
Range(cel.Offset(1), cel.Parent.Cells(Rows.Count, cel.Column)).SpecialCells(xlCellTypeVisible).Cells(1, 1).Select
Try this then
- it also works for me
Code:Dim cel As Range Set cel = ActiveSheet.Range("A10") Range(cel.Offset(1), cel.Parent.Cells(Rows.Count, cel.Column)).SpecialCells(xlCellTypeVisible).Cells(1, 1).Select
Dim myCell as Range
Range("A10").Select
Set myCell = ActiveCell
Do
Set myCell = myCell.Offset(1, 0)
Loop Until (myCell.EntireRow.Hidden = False)
MyCell.Select
How is your data being filtered?
If that code puts you on A11 is that row hidden?