Clearing an array in VBA

JoeS01

Well-known Member
Joined
Jun 25, 2005
Messages
832
What is the quickest and easiest way to clear the contents of single dimension and multidimension arrays?
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
With thanks

Thanks for this advice.
Erase statement actually sets the value of each cell to zero, where I have a numeric array.
Do you know of any statement like this that sets all the cells to empty or null?
 
Upvote 0
Erase is for an array in VB/VBA.

To clear a range of cells:

Range("A1:D10").Clear
 
Upvote 0
Re: With thanks

Thanks for this advice.
Erase statement actually sets the value of each cell to zero, where I have a numeric array.
Do you know of any statement like this that sets all the cells to empty or null?

Hi,

I assume that you are using fixed dimension arrays rather than declaring a dynamic array i.e.

Fixed
Dim MyArray(1 to 10) As Long

Dynamic
Dim MyArray() As Long
Redim MyArray(1 to 10) As Long

Erase will re-initialise fixed arrays but completely delete dynamic arrays. You can get more details by looking up the erase statement in the VBA help file.

Cheers
Dan
 
Upvote 0

Forum statistics

Threads
1,222,542
Messages
6,166,682
Members
452,064
Latest member
djmridge

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