Move the contents of a cell in Excel with keyboard (not cut/paste)?

Solution 1:

When cell dragging is recorded as a macro, the resulting VB code uses select, cut, copy and paste, depening on whether ctrl is used to duplicate, and whether alt is used to move to another sheet. Also, dragging a cell clears the paste buffer. Both of these seem to indicate that cell dragging really uses cut-copy-paste behind-the-scenes, so it's unlikely you can move the contents of a cell without using cut and paste, even if you use the mouse.

Solution 2:

Looking at the Keyboard shortcuts in Excel page, it doesn't look like there is a specific keyboard shortcut to do this so your best bet would probably simply be Ctrl + x, arrow keys then Ctrl + v.