Mar 12, 2002 #1 striker73 MIS Jun 7, 2001 376 US What is the code to create and manipulate an array? Thanks!
Mar 13, 2002 #2 B827 Technical User Feb 14, 2002 281 GB There is good coverage in Help. you should be looking for Dim MyArray() As String ReDim MyArray(2) MyArray(1) = "fred" Redim Preserve MyArray(15) for example Sandy Upvote 0 Downvote
There is good coverage in Help. you should be looking for Dim MyArray() As String ReDim MyArray(2) MyArray(1) = "fred" Redim Preserve MyArray(15) for example Sandy