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

I've heard much about the understandable abhors of using .Select in Excel VBA Macros, but am unsure of how to avoid using them, or a good resource that can shed some light on how to avoid it.

I've only recently started writing macros, and am finding that my code would be more re-usable if I were able to use variables instead of Select functions. However, I am not sure how I am able to to refer to things (like the ActiveCell etc.) if not using Select. I have found this article on ranges and this example on the benefits of not using select but can*t find anything on how .

I am currently using terms like 'avoid using select in excel macro ... in vba' etc.

Any help greatly appreciated!

share|improve this question

closed as off topic by brettdj, Rimian, Andy Hayden, A. R. S., Graviton Nov 12 '12 at 2:03

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 24 down vote accepted

Some examples of how to avoid select

Use Dim'd variables

Dim rng as Range

Set the variable to the required range. There are many ways to refer to a range

Set rng = Range("A1")
Set rng = Cells(1,1)
Set rng = [A1]
Set rng = Range("NamedRange")

or multiple cell ranges

Set rng = Range("A1:B10")
Set rng = Range(Cells(1,1), Cells(2,10))
Set rng = [A1:B10]
Set rng = Range("AnotherNamedRange")

All the above examples refer to cells on the active sheet. Unless you specifically want to work only with the active sheet, it is better to Dim a Worksheet variable too

Dim ws as Worksheet
Set ws = Worksheets("Sheet1")
Set rng = ws.cells(1,1)

Again, this refers to the active workbook, so you may want to be explicit here too.

Dim wb as Workbook
Set wb = Application.Workbooks("Book1")
Set rng = wb.Worksheets("Sheet1").Range("A1")

Pass ranges to your Sub's and Function's as Range variables

Sub ClearRange(r as Range)
    r.ClearContents
    '....
End Sub

Sub MyMacro()
    Dim rng as Range
    Set rng = [A1:B10]
    ClearRange rng
End Sub

You should also apply Methods (such as Find and Copy) to variables

Dim rng1 as Range
Dim rng2 as Range
Set rng1 = [A1:A10]
Set rng2 = [B1:B10]
rng1.Copy rng2

If you are looping over a range of cells it is often better (faster) to copy the range values to a variant array first and loop over that

Dim dat as Variant
Dim rng as Range
Dim i as Long

Set rng = [A1:A10000]
dat = rng  ' dat is now array (1 to 10000, 1 to 1)
for i = LBound(dat, 1) to UBound(dat, 1)
    dat(i,1) = dat(i,1) * 10
next
rng = dat ' put new values back on sheet

This is a small taster for whats possible

share|improve this answer
+ 1 Nicely explained – Siddharth Rout May 23 '12 at 10:35
+1 Really good summary of exactly what i was after. Hopefully more people will get pointed here rather than the fruitless searches i was getting! – BiGXERO May 23 '12 at 23:26
+1 very nice [apart from the square brackets] – whytheq Mar 15 at 21:42

Not in many words...

2 Main reasons why .Select/.Activate/Selection should be avoided?

1) It slows down your code.
2) It is usually the main cause of runtime errors.

How do we avoid it?

1) Directly work with the relevant objects

Consider this code

Sheets("Sheet1").Activate
Range("A1").Select
Selection.Value = "Blah"
Selection.NumberFormat = "@"

This code can also be written as

With Sheets("Sheet1").Range("A1")
    .Value = "Blah"
    .NumberFormat = "@"
End With

2) If required declare your variables. The same code above can be written as

Dim ws as worksheet

Set ws = Sheets("Sheet1")

With ws.Range("A1")
    .Value = "Blah"
    .NumberFormat = "@"
End With
share|improve this answer

It really depends on what you are trying to do. Anyway a simple example could be useful. Let's suppose that you want to set the value of the active cell to "foo". Using ActiveCell you would write something like this:

Sub Macro1()
    ActiveCell.Value = "foo"
End Sub

If you want to use it for a cell that is not the active one, for instance for "B2", you should select it first, like this:

Sub Macro2()
    Range("B2").Select
    Macro1
End Sub

Using Ranges you can write a more generic macro that can be used to set the value of any cell you want to whatever you want:

Sub SetValue(cellAddress As String, aVal As Variant)
    Range(cellAddress).Value = aVal
End Sub

Then you can rewrite Macro2 as:

Sub Macro2()
    SetCellValue "B2", "foo"
End Sub

And Macro1 as:

Sub Macro1()
    SetValue ActiveCell.Address, "foo"
End Sub

Hope this helps to clear things up a little bit.

share|improve this answer
Thanks for the excellent response so quickly. So does that mean that if i would normally add cells to range, name the range, and iterate through it, i should jump straight to creating an array? – BiGXERO May 23 '12 at 6:33
I'm not sure I understand what you mean, but you can create a Range with a single instruction (e.g. Range("B5:C14")) and you can even set its value at once (if it has to be the same for every cell in the range), e.g. Range("B5:C14").Value = "abc" – Francesco Baruchelli May 23 '12 at 6:50
2  
"If you want to use it for a cell that is not the active one, for instance for "B2", you should select it first, " This is exactly what should be avoided! – brettdj May 23 '12 at 7:28
1  
it'd be better to read the whole answer :-) – Francesco Baruchelli May 23 '12 at 7:36

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