Declare a 2 dimensional array with integers and strings

USAMax

Well-known Member
Joined
May 31, 2006
Messages
846
Office Version
  1. 365
Platform
  1. Windows
I need to declare a two dimensional array that will return the Row and the cell's string value. My only solution is to return the row as a string like this.

Public GlobalArray(2, 100) As String

Can someone help me get more control than this? Maybe I should just declare it as a variant but this might open it up for problems later.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Code:
Public Type myType
    rowId As Long
    cellStr As String
End Type

Public GlobalArray(100) As myType

Public Sub dosmb()
    GlobalArray(1).cellStr = "this is a string"
    GlobalArray(1).rowId = 1
End Sub
Regards,
 
Last edited:
Upvote 0
Thank you anvg, the first time I received a direct answer that was correct and elegant. I have to read up on this because I must have completely missed this one in class.

Beautiful work!

Thank you,
 
Upvote 0

Forum statistics

Threads
1,223,889
Messages
6,175,224
Members
452,620
Latest member
dsubash

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