Clearing object variables

tiredofit

Well-known Member
Joined
Apr 11, 2013
Messages
1,935
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Is it good practice to clear an object variable before using it?

For example:

Code:
Option Explicit
Sub ClearingObjects()

    Dim ws As Worksheet
    
    Set ws = Worksheets("Sheet1")
    
    ws.Cells(1, 1).Value = 1
    
        Set ws = Nothing
    
    Set ws = Worksheets("Sheet2")
    
    ws.Cells(1, 1).Value = 2
    
    Set ws = Nothing

End Sub

is this line good practice?

Code:
Set ws = Nothing

Thanks
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
It may cause problems if you were setting the variable to an application using New for example. Your variables above would be destroyed when the procedure completed.
 
Upvote 0
99 times out of 100 it's a complete waste of space ;)

The only time I can think of that it's really necessary is when you make circular references that confuse the GC. It's required then to prevent memory leaks, but this type of thing is pretty rare.
 
Upvote 0

Forum statistics

Threads
1,226,112
Messages
6,189,039
Members
453,521
Latest member
Chris_Hed

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top