I want to put the values of a column in an array or list, without having to do a for loop.
So basically if I have:
Col A
---------
212
411
432
I want to put those values in an array or list. This is how I am thinking of doing it, but I don't know the VBA syntax:
- reference Col A somehow (i.e. myColumn = column("Col A")
- insert the column values into the array(i.e. myArray = myColumn
I appreciate your help!