Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello
I have some fairly long procedures. In order to handle and analyse information, I Dim a number of Variant variables in order to "funnel down" to the key data. In terms of good programming in VBA, is it necessary, advisable, or beneficiary to Redim the arrays to (1,1) after they have been useful but no longer necessary? Thanks! W |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Unless you arrays are very large, you won't see much benefit by
releasing their memory. However, if you want to do this, and your arrays are dynamically allocated, use the Erase statement to free the array's memory. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "cogent" wrote in message ... Hello I have some fairly long procedures. In order to handle and analyse information, I Dim a number of Variant variables in order to "funnel down" to the key data. In terms of good programming in VBA, is it necessary, advisable, or beneficiary to Redim the arrays to (1,1) after they have been useful but no longer necessary? Thanks! W |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell formula that will give back the address of the cursor? | Excel Worksheet Functions | |||
To give back ground colour for entire row on certain condition | Excel Discussion (Misc queries) | |||
How to give back a value, based in another table? | Excel Discussion (Misc queries) | |||
Excel should be able to give back the colorcode of a cell via celi | Excel Worksheet Functions | |||
too many external links give "Not Enough Memory" error | Excel Programming |