Hi all,
I'm still getting used to working with arrays and could use a bit of guidance.
---
I want to store up to 16 values in a 1 dimension array.
These will be column names: "A", "Z", "CC" et cetera.
---
I'm defining the array as:
Dim ArrCol(1 To 16) As String
The column names are from a combo box on a user form
and I need some way to add the data to the array.
If ComboBox01.Value <> "" Then
>> Add Data to array <<
End If
any thoughts if I'm doing this correctly or better??
Thank you,
John,
In Annapolis, MD
I'm still getting used to working with arrays and could use a bit of guidance.
---
I want to store up to 16 values in a 1 dimension array.
These will be column names: "A", "Z", "CC" et cetera.
---
I'm defining the array as:
Dim ArrCol(1 To 16) As String
The column names are from a combo box on a user form
and I need some way to add the data to the array.
If ComboBox01.Value <> "" Then
>> Add Data to array <<
End If
any thoughts if I'm doing this correctly or better??
Thank you,
John,
In Annapolis, MD