.
These lines of code have always proved successful.

Now, for some reason, it isn't doing it's job. Is there any other way of stopping screen flicker ?

With Application
        .ScreenUpdating = False
        .DisplayStatusBar = False
        .Calculation = xlCalculationManual
        .EnableEvents = False
End With

With Application
        .ScreenUpdating = True
        .DisplayStatusBar = True
        .Calculation = xlCalculationAutomatic
        .EnableEvents = True
End With

- OR -

Application.ScreenUpdating = False
Application.ScreenUpdating = True