Thread: array
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
JMG[_2_] JMG[_2_] is offline
external usenet poster
 
Posts: 4
Default array

Any tip to test the lenght of an array ?


nLenArray = 100
nColArray = 4
Redim tSociety(nLenArray,nColArray)

For x = 1 to nLenArray
For j = 1 to nColArray
next
next


Why not possible
for x = 1 to len(tSociety()) or something similar?