Empty an Array

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Thanks for taking the time to read my question.

Just wondering how to empty an array after it has values in it.

Thanks,

Brad
 
Erase MyArrayName

Note that if it was originally declared as a dynamic array, this erases all
memory used by the array, so you'll have to ReDim it before you use it.
 
I've known it for a while. I just always forget it when I need to use it!
<g>
 
Back
Top