D
Dave B
Hi,
I want to work with an array which contains state names (e.g. Dim
strStateNames(49) as String). Is there an easy way to fill the array
without getting the data somewhere else? For instance:
strStateNames(1 To 50) = "Alabama", "Alaska", "Arizona", "Arkansas", etc.
instead of:
strStateNames(0) = "Alabama"
strStateNames(1) = "Alaska"
strStateNames(2) = "Arizona"
etc. (ugh!)
I know I can put the names in a worksheet and then:
For i = 0 To 49
strStateNames(i) = ActiveCell.Value
ActiveCell.Offset(1, 0).Select
Next i
But is there an easy way to do this without going somewhere else for the
data? Thanks.
Dave
I want to work with an array which contains state names (e.g. Dim
strStateNames(49) as String). Is there an easy way to fill the array
without getting the data somewhere else? For instance:
strStateNames(1 To 50) = "Alabama", "Alaska", "Arizona", "Arkansas", etc.
instead of:
strStateNames(0) = "Alabama"
strStateNames(1) = "Alaska"
strStateNames(2) = "Arizona"
etc. (ugh!)
I know I can put the names in a worksheet and then:
For i = 0 To 49
strStateNames(i) = ActiveCell.Value
ActiveCell.Offset(1, 0).Select
Next i
But is there an easy way to do this without going somewhere else for the
data? Thanks.
Dave