Moving the contents one cell up in a column
Solved/Closed
Related:
- Moving the contents one cell up in a column
- How to insert picture in word without moving text - Guide
- Clear only the formatting from the selected cell (leaving the content) - Guide
- Display two columns in data validation list but return only one - Guide
- Excel arrow keys not moving cells - Guide
- Insert a function in cell b2 to display the current date from your system. ✓ - Excel Forum
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Mar 10, 2010 at 12:34 PM
Mar 10, 2010 at 12:34 PM
You could have easily seen it by recording macro and recording action.
Range("C2").Select
Selection.Delete Shift:=xlUp
Range("C2").Select
Selection.Delete Shift:=xlUp
Mar 11, 2010 at 02:16 AM