I consider these anti-patterns, but others may just consider them bad programming practices. I just tend to find them in other people's code
In the Excel Object
Using the .Select method is usually the biggest thing that needs clean up.
Set a range variable and/or use .offset and remove the .Select
Not Turning off screen updating - It's fine when you're debugging but for a user
it is annoying and it really does slow down a lengthy process when left on.
Leaving Calculation on when it isn't needed. I've seen macros go through
sheets with all kinds of formulas and the formulas don't need.
Not using the With EndWith - If you have to refer to an object several times
don't keep fully qualifying the name. Instead use the With statement
'Bad
ActiveSheet.Range("A1").NumberFormat = "@"
ActiveSheet.Range("A1").Font.Size = 8
ActiveSheet.Range("A1").RowHeight = 30
'Better
With ActiveSheet.Range("A1")
.NumberFormat = "@"
.Font.Size = 8
.RowHeight = 30
End With
VBA/VB (In General)
Not Short Circuiting Logic - Some programmers have the misconception that vb / vba doesn't have short-circuiting logic. Vb / VBA does indeed have Short-circuiting it's just not as simplified as other languages. But I've seen many examples like this:
If h=1 And i > 3 And j < 4 Then 'Has to eval 3 conditions
'Some Process
ElseIf h=1 And i > 3 and j = 10 Then 'Has to eval 3 conditions again
'Some Process
ElseIf h=1 And i > 3 and j = 0 Then 'Has to eval 3 conditions again
'Some Process
End If
'Better
If h=1 then 'One Eval
If i > 3 Then 'One Eval
If j < 4 Then 'One Eval
'Some Process
ElseIf j = 10 Then'One Eval
'Some Process
ElseIf j = 0 Then 'One Eval
'Some Process
End If
End If
End If
The same applies to Or (use ElseIf)
For string functions Not using dollar sign if you want string output and not variant:
MyString = UCase(MyString) ' Bad
MyString = UCase$(MyString) ' Better
All Programming Languages
Assigning a variable in a loop or some other expensive action.
Too many times I'll find code where someone is doing a database read
in a loop for a lookup value instead of getting the whole list initially
and doing a lookup from there.
Putting the more important condition below less frequent conditions
If LeastFrequent Then
'some process
ElseIf TrueSometimes Then
'some process
ElseIf TrueMostOfTheTime Then
'some process
Else
'some process
End If
Now imagine that in some loop
In response to Jean-Francois' comments below is a simple code example. The code
does nothing of importance it simply iterates through a 80,000 rows X 300 columns
assigning a string and tab to the s variable. Its purpose is just to illustrate performance gains when optimizing code. I've come across apps with things like this where some subs make calls to functions with bad coding in loops so performance can improve from 30 minutes to just a few minutes with some tweaks. Especially when string manipulation is involved. You can copy and run this in a VBA module and see the times for yourself and change the row or column number values. The point is you need to be mindful of the code you write. When your code does stuff like this in small iterations it isn't a big deal but it does matter.
Option Explicit
Sub Test()
Dim x As Long
Dim y As Integer
Dim s As String
Dim Start As Single
Dim Finish As Single
Dim Total As Single
Dim lineData As String
Dim rows As Long
Dim cols As Integer
rows = 80000
cols = 300
lineData = String$(256, "x") ' & String$(5, vbTab)
Start = Timer
'Bad Code
For x = 1 To rows
s = UCase(lineData) ' UCase$ is better
For y = 1 To cols
If y = 100 And InStr(s, "X") <> 0 Then 'Why eval both 24 million times?
s = Left(s, 1) & Chr(9) 'use Left$ and vbTab instead of Chr(9)
Else
s = Left(s, 30) & Chr(9) 'use Left$ and vbTab instead of Chr(9)
End If
Next y
Next x
Finish = Timer
Total = Finish - Start
Debug.Print "BadCodeTime: " & Total
'Better Code
Start = Timer
For x = 1 To rows
s = UCase$(lineData)
For y = 1 To cols
If y <> 100 Then
s = Left$(s, 30) & vbTab 'Used vbTab instead of Chr$(9) function
Else
If InStr(s, "X") <> 0 Then 'Only evaluated once
s = Left$(s, 1) & vbTab
End If
End If
Next y
Next x
Finish = Timer
Total = Finish - Start
Debug.Print "BetterCodeTime: " & Total
End Sub
Results in seconds:
- BadCodeTime: 9.84938
- BetterCodeTime: 4.71875
After commenting out the If logic to test for y = 100 and test for "X" in the string in
both the results are:
- BadCodeTime: 8.09375
- BetterCodeTime: 4.359375
Now increase the row count to 500K:
- BadCodeTime: 60.375 (52.07813 when logic test y = 100 and test for x commented out)
- BetterCodeTime: 31.26563 (32.01953 when logic test y = 100 and test for x commented out)