View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] tomfabtastic@hotmail.com is offline
external usenet poster
 
Posts: 13
Default Select a column from a matrix

Hello,

I have declared a variable:
Dim dataHere(1 to 9, 1 to 3) as double

How could I select the second column from this matrix to use in
further calculations ?

I tried dataHere(All, 2) and dataHere(1 To 9 , 2)but got an error each
time.

Any ideas ?

Tom