I have a range of distinct integer values, let’s say from d7:o7 . I’d like to move these values to another location in the same work book (based on logic outside the scope of this question). What is the best way to do this?
My initial (failed) approach went a little like this:
create a variant
Dim myArray As Variant
assign values to array
myArray = Range("d7:o7")
output array of integers in a new range
Range("d10:o10") = myArray
Thanks in advance!
Hope this helps