Hello fellow Excel enthusiasts,

I have a small problem I've been trying to figure out for several days and can't seem to find a solution. I'm hoping someone here has come across this issue and can provide some guidance. The issue I am having is as follows. I have an Excel userform with a listbox that simply switches from the current sheet to another sheet then switches back. The problem is the shapes on the current page flicker at the end of this code. I turned off screen updating at the very beginning and turned it back on at the end of this short code so I don't understand why this is happening. Does this happen to anyone else? Is there a solution for this or am I stuck with it? Below is a copy of the code, any help is appreciated.

Private Sub ListBox1_Click()
Application.ScreenUpdating = False

Sheets("Full scope Summary").Select
Sheets("Summary").Select
Application.ScreenUpdating = True
End Sub