I was wondering how to fill a multi-dimensional array in Excel VBA. A 1d array can be filled as follows:
Dim myarray as variant
myarray = Array("sheep", "goat", "chicken")
How would I fill each row separately for a multi-dimensional array?
See Question&Answers more detail:os