Thread: Array Question
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JLGWhiz[_2_] JLGWhiz[_2_] is offline
external usenet poster
 
Posts: 1,565
Default Array Question

The first is a variable holding an array and the second is the array.



"ron" wrote in message
...
What are the differences between an array created using the following
method

my_array = Array(100, 200, 300)

and an array created as follows?

my_array(0) = 100
my_array(1) = 200
my_array(2) = 300

I've noticed that the "Filter" function does not work with the array
created by the last construction...TIA, Ron