So I'm very much a beginner to VBA/macros in excel, so please bear with me.
Ultimately, we display spreadsheets up on our tvs in the shop and I'm looking to implement an auto scroll function that will scroll to the end of the data slowly and loop back up when it reaches the end, doing this continuously.
I have this so far:
Sub Macro12()
Range("A1").Select
Do Until IsEmpty(ActiveCell)
ActiveWindow.SmallScroll Down:=2
Loop
End Sub
It scrolls, but it just keeps going. How can I make it loop back to the beginning and start again on a continuous loop?
Thanks!