Hi
Is there a way to refresh the display of only a specified range of cells from VBA, when ScreenUpdating = False?
What I mean is the following:
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Range("A1").Calculate
Range("A1").SomeFunctionThatRefreshesThis
...
Karl