excel vba make cell visible

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

‘ First be sure to activate the sheet
Worksheets(“Sheet1”).Activate
‘ Then simply activate the Cell:
Range(“B3”).Activate
‘ Scroll
Application.Goto Activecell, True
‘ Or (5Th line will be the first displayed on top):
ActiveWindow.ScrollRow = 5

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

More questions on [categories-list]

Similar Posts