I have a macro, and at the end of it, I'd like to copy my selection and paste the data right where it is, but paste values only.
I have this code:
Range("J4:Y4").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
'Range("J4").PasteSpecial Paste:=x1PasteValues, Operation:=x1None, SkipBlanks:=False, Transpose:=False
But it's giving me an error on the last line (which is why I have it deactivated at the moment.
Help?
Thanks!
I have this code:
Range("J4:Y4").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
'Range("J4").PasteSpecial Paste:=x1PasteValues, Operation:=x1None, SkipBlanks:=False, Transpose:=False
But it's giving me an error on the last line (which is why I have it deactivated at the moment.
Help?
Thanks!