View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Declaring 2 dimensional arrays

Declare the array type as Variant. It can hold any data type.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Dan" wrote in message
...
I want to have an array - Item(100,2) where the first column is
a string and
the second column is an integer.

Is this possible? If so how do I declare the variable.

Dan