Somehow I managed to set ScreenUpdating = False for the entire Excel application. When I open any excel workbooks the only thing that appears is the tool bars on top because the rest isn't updating. However, if I open up VBA editor and run a quick code,
everything works properly. If I save and close the program and reopen it, or any other workbook, screenupdating = false again.
How do I fix this?
Code:
sub test()
Application.ScreenUpdating = True
End Sub
everything works properly. If I save and close the program and reopen it, or any other workbook, screenupdating = false again.
How do I fix this?