"All of a sudden, we’ve lost a lot of control," he said. "We can’t turn off our internet; we can’t turn off our smartphones; we can’t turn off our computers. You used to ask a smart person a question. Now, who do you ask? It starts with g-o, and it’s not God."
- Steve Wozniak

Top Ten Tags

Who's Online

Here's some Excel VBA code that allows you to 'move' down (i.e. select/activate) a single visible row (or multiple if you adjust to code) that takes into account hidden or filtered rows.

Sub sMoveDown1Row()
    
    'Select row to start on
    .Range("A1").Select
    'Go down 1 row
    ActiveCell.Offset(1, 0).Select
    'Keep going until on a row that isn't hidden
    Do Until ActiveCell.EntireRow.Hidden = False
        ActiveCell.Offset(1, 0).Select
    Loop

End Sub