double array

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have to process 4-7 sheets with similar columns. WHat i
have to do is I have to search for the column
heading "GF", "Total" in all the sheets (all sheets are
exactly similar). Ihave to also search for last rows in
all the sheets. THis is simple as i can create array of
variables. Like i can store lastrow(1)...of sheetone and
likewise.

But the confusing part is when i have to trap a series of
values in an array in each sheet. Here i feel i need to
create double arrays. Like if i am on sheet 1 then
something like trapCelValue(sht1,counter1)
so sht1 will be the variable which stores sheet
numbers.... and counter1 will be the counter for storing
hte values.
like in sheet1 i will have to store values like : 13, 18,
45, 22, 90
so my array should be

trapCelValue(1,1)="13"
trapCelValue(1,2)="18"
trapCelValue(1,3)="45"
trapCelValue(1,4)="22"
trapCelValue(1,5)="90"

i am slightly confused as to how to declare and process...
any simple example will be helpful

thanks a lot
 
Just declare a 2D array:

Dim trapCelValue(1 To 5, 1 To 10) As String

You seem to be treating the numbers as text as you have enclosed them in
quotes. Or you could remove the quotes and declare trapCelValue as a numeric
data type.

Substitute the actual upper bounds for 5 and 10.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top