Answers for "excel vba move down to next visible cell"

VBA
0

excel vba move down to next visible cell

' Select the cell immediately above the filtered view
Range("A1").Select
' Move the selection to the first visible filtered cell of the same column
ActiveCell.Offset(1, 0).Select
  Do Until ActiveCell.EntireRow.Hidden = False
  ActiveCell.Offset(1, 0).Select
  Loop
Posted by: Guest on September-16-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language