excel vba move down to next visible cell

The solution for “excel vba move down to next visible cell” can be found here. The following code will assist you in solving the problem.

‘ 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

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts