Reputation: 19
I have linked the data with the scrollbar in excel and want to scroll the scrollbar automatically instead of by mouse. Please let me know if this can be done.
Upvotes: 1
Views: 386
Reputation: 3523
This VBA scrolls down one row at a time:
ActiveWindow.ScrollRow = ActiveWindow.ScrollRow + 1
Upvotes: 2