I would like to get excel data into an array in VBA, so I do the following:
Dim Arr() As Variant Arr = ActiveWorkbook.Sheets(\"Sheet1\").Range(\"C28:R29\") <
It's pretty simple, just add .Value (I discovered that trick not so long ago and I'm already fan! :) )
.Value
Arr= ActiveWorkbook.Sheets("Sheet1").Range("C28:R28").Value2