Hi there,
I have no clue why I can't use the "Application.ScreenUpdating = False/True" code on one of my macros. After I add them to the top and bottom of my macro code, the macro does not work anymore. In particular, the select function is removed and the macro is only left with the "ActiveWindow.SmallScroll Down:=-36".
Here is the macro that does NOT work with the addition of the screen updating code:
Sub GotoTop_Click()
Application.ScreenUpdating = False
ActiveWindow.SmallScroll Down:=-36
Range("C1").Select
Application.ScreenUpdating = True
End Sub
Here is a macro that worked perfectly alright with the addition of the screen updating code:
Sub OverallFinancialPerformance_Click()
Application.ScreenUpdating = False
ActiveWindow.SmallScroll Down:=25
Application.ScreenUpdating = True
End Sub
Please help!!!! THANKS SO MUCH!

Moderator's Edit: Use code tags when you post code. To do so (for future use), select your code and click on the # icon above.
Bookmarks