Very new to VBA:
I am looking to cut data from cells C2 to the end of the column and paste that data, beginning in cell e2.
I understand this should be extremely simple, but I have tried a few things and am still stuck. The data gets cut directly, but cannot get it to paste.
Recent attempt:
Sub CutPaste_Data()
Range("c2", Range("c2").End(xlDown)).Select
Selection.Cut
Range("e2", Range("e2").End(xlDown)).Select
Selection.PasteSpecial