I was wondering how to populate a multidimensional array in Excel VBA. The 1st array can be filled as follows:
Dim myarray as variant myarray = Array("sheep", "goat", "chicken")
How can I fill each row separately for a multidimensional array?
source share