G
Guest
I've got this code which works as expected:
Dim myRange As Range
Set myRange = Selection
Range(myRange.Address).Select
Selection.Copy
Range("Q8").Select
ActiveSheet.Paste
What I would like is for the copy beginning at Q8 to be in the reverse order
from what's in myRange. How would I accomplish this?
Dim myRange As Range
Set myRange = Selection
Range(myRange.Address).Select
Selection.Copy
Range("Q8").Select
ActiveSheet.Paste
What I would like is for the copy beginning at Q8 to be in the reverse order
from what's in myRange. How would I accomplish this?