日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Optimize Slow VBA Code

發布時間:2025/3/13 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Optimize Slow VBA Code 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Speed up code and stop screen flickering:

Sub NoScreenRePainting()
Application.ScreenUpdating=False
  'Your code here.
Application.ScreenUpdating=True
End Sub

Preventing calculation while executing code:

Sub NoCalculations()
  Application.Calculation = xlCalculationManual
  'Your code here.
  Application.Calculation = xlCalculationAutomatic
End Sub

Speeding up code if you have Worksheet or Workbook Events. Also stops endless loops in Events

Sub StopAllEvents()
  Application.EnableEvents = False
  'Your code here.
  Application.EnableEvents = True
End Sub

Use the With Statement when working with Objects.

Sub WithARange()
  With Range("A1")
    .Value = 100
    .Font.Bold = True
    .Interior.ColorIndex = 6
    .Copy Destination:=Range("B1")
  End With
End Sub

Use VbNullString instead of = "" When needing to default a String variable back to it's default of "" use:

Sub EmptyText()
  Dim strWords As String
  strWords = "Cats"
  MsgBox strWords
  strWords = vbNullString
  MsgBox strWords
End Sub

Inserting a Relative formula into a range of cells: Faster than AutoFill or Copy.

Sub NoAutoFillOrCopy()
  Range("A1:A200").FormulaR1C1 = "=SUM(RC[1]:RC[5])"
End Sub

Tip: To get a formula, type it in any cell then select the cell, go Tools>Macro>Record new macro and record a macro pushing F2 then Enter.

Avoid the use of Copy and Paste whenever Possible:

Sub NoCopyAndPaste()
  'Instead of:
  Sheet1.Range("A1:A200").Copy
  Sheet2.Range("B1").pasteSpecial
  Application.CutCopyMode=False'Clear Clipboard
  'Use:
  'By-passes the Clipboard
  Sheet1.Range("A1:A200").Copy Destination:=Sheet2.Range("B1")
  'Or, if only values are needed:
  Sheet2.Range("B1:B200").Value= Sheet1.Range("A1:A200").Value
  'Or, if only formulae are needed:
  Sheet2.Range("B1:B200").Formula = Sheet1.Range("A1:A200").Formula
  'See also FormulaArray and FormulaR1C1 etc
  'Instead of:
  Sheet1.Range("A1:A200").Copy
  Sheet1.Range("A1:A200").PasteSpecial xlPasteValues
  Application.CutCopyMode=False'Clear Clipboard
  'Use:
  Sheet1.Range("A1:A200") = Sheet1.Range("A1:A200").Value
End Sub

Always declare your variables correctly!

To quickly view a variables definition:
Select the variable that you want the definition for.
Go to View>Definition (Shift+F2)

To return to your previous position:
Go to View>Last Postition (Ctrl+Shift+F2).

Release memory from Object variables:

Sub ReleaseObjectMemory()
  'Could be any variable of the Object type
  Dim wSheet as Worksheet
  'Set Object variable
  Set wSheet = Sheet1
  'Your code here.
  'Release memory
  Set wSheet = Nothing
End Sub

Don't get caught in the Loop.
Follow this link to see why Loops should (and usually can) be avoided.

Avoid If, Else whenever possible

More often than not people would use an If, Else Statement to test whether a condition is TRUE or FALSE. There is however a slightly faster (and less typing) method. The first example shows the common method, while the second shows a faster method. Of course in such a small example the difference is not noticeable.

Sub TrueOrFalseSlower()
  Dim bYesNo As Boolean
  Dim i As Integer
  If i = 5 Then
bYesNo = True
  Else
bYesNo = False
  End If
  MsgBox bYesNo
End Sub

Here's a better way!

Sub TrueOrFalseFaster()
  Dim bYesNo As Boolean
  Dim i As Integer
  bYesNo = (i = 5)
  MsgBox bYesNo
End Sub

Another common need is to toggle a variable between True and False depending on a condition. For example:

Sub ToggleTrueOrFalseSlower()
  Dim bYesNo As Boolean
  If bYesNo = False Then
bYesNo = True
  Else
bYesNo = False
  End If
  MsgBox bYesNo
End Sub

Here's a much better way

Sub ToggleTrueOrFalseFaster()
  Dim bYesNo As Boolean
  bYesNo = Not bYesNo
  MsgBox bYesNo
End Sub

Source: http://www.ozgrid.com/VBA/SpeedingUpVBACode.htm

轉載于:https://www.cnblogs.com/end/archive/2010/11/05/1869819.html

總結

以上是生活随笔為你收集整理的Optimize Slow VBA Code的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。