Is there a way to create an array variable with uniform entries without using a loop? For example, to create an array variable with 25 entries I could do the following:
Dim myarray(1 to 25) as String
For n = 1 to 25
myarray(n) = "Hello"
Next n
This would get the job done, but I am looking for a way to do that in one fell swoop.