Passing 2-dimensional arrays between subroutines

Pak Mariman

New Member
Joined
Jan 15, 2017
Messages
21
I cannot seem to get this to work.

I want to pass a 2D-array from a subroutine to other subroutines in which a data manipulation should take place.

I am calling below subroutine from a command button on Sheet1. In Module1 I have declared the variables as public. Inside the subroutine ReadData, at the End If statement, InputArray is populated with an array consisting of numbers that the user has marked following the inputbox. After the subroutine ReadData has completed, InputArray is empty.

What is the obvious and blatantly daft thing that am I doing wrong?

Sheet1:
Private Sub CommandButton1_Click()
Call ReadData
End Sub

Module1:
Option Explicit
Option Base 1
Public MyRange, InputArray As Variant

Sub ReadData()
Set MyRange = Application.InputBox("Mark the data array", Type:=8)
If Not MyRange Is Nothing Then
InputArray = MyRange​
End If
End Sub
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
After the subroutine ReadData has completed, InputArray is empty.
That is not the case for me. If you add this line of code, does it error? If so, what error message? If not, what does it return.
Note that it will error if only a single cell is selected so make sure you select a range of cells



Sheet1:
Private Sub CommandButton1_Click()
Call ReadData
MsgBox "First element in array: " & InputArray(1, 1)
End Sub
 
Upvote 0
Hi,
try passing your Range object variable as an argument to the called procedure.

Sheet1

Code:
Option Explicit
Private Sub CommandButton1_Click()
    Dim myRange As Range
    Call ReadData(myRange)
    If Not myRange Is Nothing Then MsgBox myRange.Address
End Sub


Module 1

Code:
Sub ReadData(ByRef Target As Range)
    On Error Resume Next
    Set Target = Application.InputBox("Mark the data array", Type:=8)
'cancel pressed
        If Err <> 0 Then Set Target = Nothing
    On Error GoTo 0
End Sub


When passing arguments by reference you are referencing the original variable value. The value of myrange is changed in the called procedure.
You should now be able to use your variable with rest of your code.

Dave
 
Upvote 0
Cross posted https://www.excelforum.com/excel-pr...2-dimensional-arrays-between-subroutines.html

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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