Get data from Array

bojobuddy

New Member
Joined
Jul 8, 2018
Messages
2
Not able to retrieve data from array. Please help.

My code is as under:

Sub test()


Dim arr_data(1 To 100000, 1 To 30, 1 To 10) As Variant
Dim at, at1, col_t, row_t As Integer
Dim col_v, row_v, data_v As Variant
For at = 2 To row_t
For at1 = 2 To col_t
col_v = Worksheets("Sch_P1").Cells(at, 1)
row_v = Worksheets("Sch_P1").Cells(1, at1)
arr_data(row_v, col_v, 1) = Worksheets("Sch_P1").Cells(at, at1)
arr_data(row_v, col_v, 2) = Worksheets("Sch_P2").Cells(at, at1)
arr_data(row_v, col_v, 3) = Worksheets("Sch_P3").Cells(at, at1)
arr_data(row_v, col_v, 4) = Worksheets("Sch_B1").Cells(at, at1)
arr_data(row_v, col_v, 5) = Worksheets("Sch_B2").Cells(at, at1)
arr_data(row_v, col_v, 6) = Worksheets("Sch_B3").Cells(at, at1)
arr_data(row_v, col_v, 7) = Worksheets("Sch_B4").Cells(at, at1)
Next at1
MsgBox arr_data(row_v, col_v, 1)
Next at
col_v = (Worksheets("Sch_P1").Cells(1, 5)
row_v = Worksheets("Sch_P1").Cells(5, 1)
MsgBox arr_data(row_v, col_v, 1)
End Sub

I am beginner... :biggrin:
Posting for the first time...
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,214,979
Messages
6,122,557
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top