Your posting doesn't provide all the necessary data to help, but let me see if this helps.
1) Arrays must be dim or reDim to create
Example: dim testdim(4,1) as String
This creates a two dimensional array that can be loaded by individually calling each cell like:
testdim(0,0) = "1st test"...