Greetings,
I am receiving an error message that is saying the copy range is not able to paste. The area to be copied is a rectangle. I would like the paste range to be a single cell. How to grab only the cell at the offset point?
Thanks!
Code:
Range("A4:A3").Select Range(Selection, Selection.End(xlToRight)).Copy
COM.Worksheets(G).Activate
Range("A2").Select
Selection.End(xlToRight).Offset(-1, 1).Select
Selection.PasteSpecial Paste:=xlPasteValues
I am receiving an error message that is saying the copy range is not able to paste. The area to be copied is a rectangle. I would like the paste range to be a single cell. How to grab only the cell at the offset point?
Thanks!