Thread: Array Question
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ron ron is offline
external usenet poster
 
Posts: 118
Default Array Question

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