Excel VBA解读(102):处理屏幕刷新——ScreenUpdating属性( 四 )




3

 

这将有

616

个单元格要在每次计算时都会发生变化。下面的代码将测试屏幕更新开或关时执行

10000

616

个单元格的计算所花的时间。

Sub testScreenUpdating2()

   Dim i As Long

   Dim tStart, tEnd, tScreenOn, tScreenOff

   

   With Application

        .Calculation = xlCalculationManual

        .ScreenUpdating = False

        tStart = Time