View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
MWE[_16_] MWE[_16_] is offline
external usenet poster
 
Posts: 1
Default Assigning Array Values

Is there a "compact" way of assigning values to arrays, perhap
something like the FORTRAN DATA statement? Assume a string array
"strA", dimensioned at (5) and the need to assign values to strA(1)
strA(2), ... perhaps:

Dim strA(10) as String

strA(1) = "alpha"
strA(2) = "bravo"