If I grab a block of data from excel into an array say A1:E5, is there anyway I can simply reference the data in the region B1:E5, I'd simply like to replace that section with the data from A1:D5.
If is was doing it on the sheet it'd simply be
but I'm stumped as how to reference it within the array.
If is was doing it on the sheet it'd simply be
VBA Code:
Range("B1:E5").Value = Range("A1:D5").Value
but I'm stumped as how to reference it within the array.