UserForm Level Variables Scope Question

cr731

Well-known Member
Joined
Sep 17, 2010
Messages
611
I have several variables declared at the top of my UserForm (outside of any procedure), some of them are ranges, ListObjects, and PivotTables. Is it necessary to use

Code:
Set variable = nothing

before closing the UserForm to remove them from memory, or will they automatically go out of scope when the UserForm is closed - by clicking the X on the upper-right of the UserForm?

My understanding was that UserForm level variables are similar to Module level variables, and I was reading here (http://www.ozgrid.com/VBA/variable-scope-lifetime.htm) and it sounds like Module Level variables are retained until the Workbook is closed or End is used;


"Its value is retained unless the Workbook closes or the End Statement is used."

But I'm still not positive this is exactly the same as a UserForm.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
They are local to the instance of the form, so they are destroyed when it is closed (not Hidden).
 
Upvote 0

Forum statistics

Threads
1,224,819
Messages
6,181,153
Members
453,021
Latest member
Justyna P

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