G
Guest
How can I tell if an array declared initially as myArray() has yet been ReDim'ed?
yet been ReDim'ed?dan said:How can I tell if an array declared initially as myArray() has
Dana said:Just another idea then...
Sub Demo()
Dim v As Variant
' etc
If Not IsArray(v) Then ReDim v(1 To 10)
End Sub