Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have being coding a lot in VBA lately (maintenance and new code), specifically with regards to Excel automation etc. = macros.

Typically most of this has revolved around copy/paste, send some emails, import some files etc. but eventually just ends up as a Big ball of mud

As a person who values clean code, I find it very difficult to produce 'decent' code when using VBA. I think that in most cases, this is a direct result of the macro-recorder. Very helpful to get you started, but most times, there are one too many lines of code that achieve the end result. Edit: The code from the macro-recorder is used as a base to get started, but is not used in its entirety in the end result

I have already created a common addin that has my commonly used subroutines and some utility classes in an early attempt to enforce some DRYness - so this I think is a step in the right direction. But I feel as if it's a constant square peg, round hole situation.

The wiki has an extensive list of common anti-patterns and what scared me the most was how many I have implemented in one way or another.

The question

Now considering, that my mindset is OO design, what some common anti-patterns and the possible solutions

  • when designing a solution (think of this - how would designing a solution using Excel and VBA be different from say a .net/java/php/.../ etc solution) ; and
  • when doing common tasks like copying data, emailing, data importing, file operations... etc

An anti-pattern as defined by Wikipedia is:

In software engineering, an anti-pattern (or antipattern) is a pattern that may be commonly used but is ineffective and/or counterproductive in practice

share|improve this question
3  
Waaay to broad for me to even know where to start answering. – Cody Gray Nov 25 '10 at 10:12
1  
@ignacio - surprisingly enough, your comment was what I initially started the question with...lol – Ahmad Nov 25 '10 at 10:26
11  
@Ignacio your language snobbery is better left somewhere else (ie to yourself). You use the tools you have at hand to do the job. – dmaruca Nov 26 '10 at 19:17
2  
@dmaruca: I agree. Sometimes you have to do the best you can with the tools you're given. I wish I could dictate more of what I get to use on a day to day basis, but I ultimately I get paid to get the job done within the constraints of the system I have to work with. – Michael Nov 29 '10 at 14:03
1  
Worst anti-pattern: involve a java programmer, and end up with 3000 lines instead of 3 lines (not to mention a ton of totally un-necessary classes). – iDevlop Dec 27 '11 at 10:38
show 3 more comments

10 Answers

A common coding oversight I see is declaring variables as follows:

Dim a, b, c as Integer

This only sets the variable c as an Integer. Variables a and b will be of type Variant. This can be validated by using VarType() in VBA.

Instead, the correct variable declaration (assuming a,b and c should be integers) should read:

Dim a as Integer, b as Integer, c as Integer
share|improve this answer
3  
I see this a lot as well. "Option Explicit" is your friend, and will save a lot of headaches! – Michael Nov 29 '10 at 14:19
1  
@Michael--"Option Explicit" won't help with this at all. As far as the compiler is concerned, the variables have been declared, so it's all good. – RolandTumble Nov 29 '10 at 18:09
1  
@michael - Option Explicit requires that all variables be declared using Dim. The Type of the variable is of no consequence (either Variant or the type it was declared as) – Ahmad Nov 30 '10 at 7:44
You are both correct, of course. I was making a hasty reply and mixing up my responses! – Michael Nov 30 '10 at 13:46

You CAN code clean stuff in VBA ! Nobody asked you to use the terrible stuff produced by the recorder. Just use it as a shortcut to the doc, to identify the methods/properties you need to use.
Rather than beeing negative, here are a few tips I've been using.

  • Learn to use use Class modules, if you code properly you can reuse that pretty usefully. For example I built a class to import external data (simple text files, Access tables) into a sheet very quickly. Another one to import complex text files (multiple lines per logical record)
  • I tend to group my functions in different modules, and I export them to .cls or .bas. That makes it easy to reimport them in a new project in no time.
  • In the above library files, I set most functions as Private, and I remove the Private only when I need to use the function. When the app goes in prod, I remove the unused functions.
share|improve this answer
I read the first two sentences and thought here comes a bashing.. to clarify though, as I said the macro recorder gets me started.In almost all cases, that code never is used in a final product. Regarding your third point, that sounds like an icky process simply because you removing code from a common module. Whats the point of having a common module? – Ahmad Nov 25 '10 at 12:09
6  
+1 VBA is not that much different than VB6, and anyone who can write clean, object-oriented code in another language can do the same in VB6 if they'd stop whining long enough. – Cody Gray Nov 25 '10 at 12:18
It's just easy to group functions into modules of similar interest. I have a module for file operations (not all Excel macros need to deal with that), another one for some user interactions (same remark), etc... My goal is to reuse code, but avoid unused modules in every app. – iDevlop Nov 25 '10 at 12:21

Some of the classics IMHO:

  • Using unnecessary VBA: Doing things that can cleanly be done using spreadsheet functions. Spreadsheets are essentially a functional programming environment, thats why it is so convenient to use and easy to trace calcualtions, errors, etc. Introducing VBA breaks these things - use only when necessary.
  • Hard Coding: Hard coding cell ranges, etc in VBA is probably the most common mistake VBA ever, and makes maintenance a nightmare. Use named ranges, obviously.
  • Sequential coupling: Requiring the user to press a number of buttons in a particular sequence. If A needs to be done before B, combine A & B, if not don't make it sequential.
share|improve this answer
this is vein of the expected answer.. – Ahmad Nov 26 '10 at 5:49
Named ranges pose a risk if not hidden. – iDevlop Nov 26 '10 at 13:01
@idevelop - care to expand on that... – Ahmad Nov 26 '10 at 13:03
4  
Users may incidentally modify named ranges if they are visible. I use free Excel Utilities (appspro.com/Utilities/ExcelUtilities.htm) to hide all names before putting stuffin production. – iDevlop Nov 30 '10 at 6:29
1  
"If A needs to be done before B, combine A & B, if not don't make it sequential" ... except if you sometimes need to review and adjust intermediate results between A and B. This is a common occurence in e.g. engineering. Also, whether VBA is less traceable than worksheet functions is a matter of debate; worksheet functions can be completely unreadable. – Jean-François Corbett Sep 27 '12 at 10:17
show 4 more comments

Make sure Option Explicit is included to force explicit declaration of all variables in the program. I'd agree with iDevlop here, there is absolutely no reason you can't write decent clean code in VBA if you're careful.

The recorder produces awful code of course but can at least help identify objects, properties of interest. When I wrote a lot of VBA I'd regularly use the recorder as an adjunct to the documentation but never as a source of production code.

share|improve this answer

Probably the biggest anti-pattern is over- or underestimating what VBA is. Many folks want it to be C++ and polymorphize and encapsulate and blah blah. Others relagate it to a script-kiddy doodling language (like JScript/VBScript) and just use it the way they would on an .html page - a bunch of routines all in a single module.

Both of these lead to many problems. The first is that simple things become over-engineered. Take a look at PowerSCORM as an example of a relatively straight-forward need (SCORM packaging for e-Learning) and the (some say elegant, others say bloated) way it was coded. The second produces all kinds of issues with things like readability, inefficient code, etc. as others have stated. Take it as serious as you would a VB6 program, but realize it is not fully OO or "modern". That's fine though.

The real key here is not so much VBA, but the Office object model and the platform - knowing that in and out will allow you to write very efficient and maintainable code. There are deployment issues that different from .NET deployment, patterns that may be helpful (using DoEvents on long operations), and choosing built-in VBA/OM routines over rolling your own (e.g. Search/Replace in Word as opposed to building your own RegEx engine; e.g. Using FSO to write files or to the registry when that functionality already exists in the OM & VBA).

There are plenty examples out there of working with VBA, from better-coding patterns to using debug features. But what I'd really recommend is knowing the object model in depth.

share|improve this answer
3  
+1: VBA has many, well known shortcomings. But, too many criticisms come from the assumption that it should work like other languages. VBA is meant to support and expand applications that already function pretty well on their own. When VBA applications are designed with this in mind, they tend to work pretty well in their own way. – anschauung Dec 28 '10 at 20:50

my subjective answer ...

Looking at many code samples I would tend to say the worst anti-patterns arise from macro-capturing. Allthough - as you rightly say - this gives you an idea about how to start, it also shows how not to use VBA because it does not use BASIC, it just wraps EXCEL operations with all its cell and range hardcoding (absolute or relative).

Sometimes macro recording can be even totally misleading. You can write very clean and proper code if you think more BASIC than EXCEL.

Example: create a table 5 rows x 2 columns containing 1..5 / A..E

recording (relative)

Sub Sample()
'
' Sample Macro
' Macro recorded 25.11.2010 by
'

'
    ActiveCell.FormulaR1C1 = "1"
    ActiveCell.Offset(1, 0).Range("A1").Select
    ActiveCell.FormulaR1C1 = "2"
    ActiveCell.Offset(1, 0).Range("A1").Select
    ActiveCell.FormulaR1C1 = "3"
    ActiveCell.Offset(1, 0).Range("A1").Select
    ActiveCell.FormulaR1C1 = "4"
    ActiveCell.Offset(1, 0).Range("A1").Select
    ActiveCell.FormulaR1C1 = "5"
    ActiveCell.Offset(-4, 1).Range("A1").Select
    ActiveCell.FormulaR1C1 = "A"
    ActiveCell.Offset(1, 0).Range("A1").Select
    ActiveCell.FormulaR1C1 = "B"
    ActiveCell.Offset(1, 0).Range("A1").Select
    ActiveCell.FormulaR1C1 = "C"
    ActiveCell.Offset(1, 0).Range("A1").Select
    ActiveCell.FormulaR1C1 = "D"
    ActiveCell.Offset(1, 0).Range("A1").Select
    ActiveCell.FormulaR1C1 = "E"
    ActiveCell.Offset(0, 2).Range("A1").Select
    ActiveCell.FormulaR1C1 = "2"
End Sub

ugly - and totally inappropriate for a BASIC program

thinking BASIC - and for me this means

  • abstract the problem
  • think procedural (or even object oriented if you can)

I would code

Sub CreateTable()
Dim MyRange As Range, Idx As Long

    Set MyRange = Selection

    For Idx = 1 To 5
        MyRange(Idx, 1) = Idx
        MyRange(Idx, 2) = Chr(Asc("A") + Idx - 1)
    Next Idx

End Sub

You judge which code you like more ....

share|improve this answer

I would say the most common anti-pattern I see in VBA code is error handling of the form:

Private Sub TypicalVBA()
On Error GoTo ErrorHandler
    'Do Something'

ExitHere:
    'No meaningful cleanup'
    Exit Sub

ErrorHandler:
    MsgBox Err.Description & "(" & Err.Number & ")"
    Resume ExitHere
End Sub

This is code written with the best of intentions but I find 2 problems with it:

  1. It is rare that there is actually a need for the Resume ExitHere jump. This complicates the code for no reason. If there is common cleanup that is appropriate for either an error or non-error situation, then it is a good idea, but putting this bit in every single routine, needed or not, simply bloats the code with needless jumps.
  2. Putting a message box handler in every routine can seem like a brilliant idea at first, until your code gets complicated enough to have cascading errors. Setting up a global error handler and calling that instead gives you flexibility as your error handling needs evolve.

Here's what I would write:

Private Sub BetterVBA()
On Error GoTo ErrorHandler
    'Do Something'

    Exit Sub

ErrorHandler:
    GlobalErrorHandlerMethod Err.Description, Err.Number, "BetterVBA subroutine"
End Sub
share|improve this answer
I dont how but I missed your answer - regarding point 1, I find that having those types of jumps are pretty useful when dealing with error in loops that you want to continue. I agree with Point 2. – Ahmad Feb 16 '11 at 4:29

Ah, VBA the bane of my existence yet the provider of my paychecks.

First, I would encourage very strongly that as much code as possible goes into well-named, categorized modules. In Excel I often see new users putting code into specific spreadsheets or ThisWorkbook. This should be avoided as much as possible in order to keep code well-organized and easy to read and maintain. If something needs to be called by a worksheet-driven event I try to have it simply call a sub that's located in another module.


Since VBA isn't as fully supported as other languages, it doesn't have the bevy of tools available to it as professional programmers might be used to. One tool I have found invaluable for created clean code is MZ-Tools. At a bare minimum, the ability to quickly insert comment blocks and error handling makes this a huge time saver and will give your code a consistent look for documentation. XML documentation export, variable use... there's lots to be gained here.


Finally:

Though VBA's error handling uses the antiquated and much-loathed "goto" statement, it's a valuable addition to most subroutines. This is especially true when changing application-level settings.

For example, a common method of speeding up code that affects a large area of cells in Excel is to disable screen updating. This is done with:

Application.ScreenUpdating = False
' Code goes here
Application.ScreenUpdating = True

Others might include:

Application.ShowWindowsInTaskbar = False
Application.EnableEvents = False

These are very helpful and will greatly speed up performance under the right circumstances. The problem arises, however, when the odd error occurs and your application properties never got set back to "true". That's why if I find myself calling ANY application-level properties I reset them to True in the error handler. Otherwise you'll find your application behaving in a pretty peculiar manner.

ExampleSub_Error:

    MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure ExampleSub of     VBA Document Sheet2"
    Application.EnableEvents = True
    Application.ScreenUpdating = True

End Sub
share|improve this answer
1  
Michael, you code wil look better in SO if you 'close' your comments (even if that's not VBA) – iDevlop Nov 30 '10 at 14:53

Perhaps not the most common anti-pattern one but what often catches programmers from other languages by surprise is that VBA does not short circuit logical AND. For example:

Function TestShortCircuit(a As String)

    If IsNumeric(a) And CInt(a) = 0 Then
        Debug.Print "a converted to integer will be 0"
    Else
        Debug.Print "a is not a number or non-zero when converted to integer"
    End If

End Function

Try it in immediate window:

? TestShortCircuit("0.25")
a converted to integer will be 0
? TestShortCircuit("1.25")
a is not a number or non-zero when converted to integer
? TestShortCircuit("agilevic")

In the last call a type mismatch gets thrown because CInt gets called on a string, which cannot be interpreted as number. Most languages stop evaluating logical conjunction as soon as at least one condition evaluates to false. In VBA you have to rewrite the code as follows:

Function TestShortCircuit(a As String)

    If IsNumeric(a) Then
        If CInt(a) = 0 Then
            Debug.Print "a converted to integer will be 0"
        End If
    Else
        Debug.Print "a is not a number or non-zero when converted to integer"
    End If

End Function
share|improve this answer

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)
share|improve this answer
Have you ever tested how much of a difference all of these things makes in terms of execution time? Pretty microscopic. Really you should just write whatever is most readable. – Jean-François Corbett Sep 27 '12 at 10:23
Yes I have. For example, I came across a Access Front-End legacy application created for consultants when helping clients in the field. It was made circa late 90's. Some audit processes involved log files with multiple record types within the same file with varied file layouts. The large log files were processed using VBA on laptops. The data was normalized using subs calling functions and subs, string parsing, file I/O for import data into Access or SQL. A log with a month or more would run 15 minutes to 2+ hours before loading. With changes like above I cut it to under 3-5 min. – Charles Byrne Sep 27 '12 at 19:47
Interesting. As a side note, I suggest you try profiling your code using a package like this one. This will show you which lines of code take up most of the execution time and would benefit from optimising (and which don't). – Jean-François Corbett Sep 28 '12 at 6:40
Jean-Francois, Thanks for the link. I already have some profiler apps for VB6 and VBA that I use for problem code. They aren't free so I won't list them here. I'll check this one out as well. Another freebie is MZ-Tools 3.0. It has some code review functions and other utilities. – Charles Byrne Sep 28 '12 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.