Enforcing Moving Cells Up

Written by Allen Wyatt (last updated November 20, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


Chris has, at work, a big worksheet that includes several macros. One of these deletes a block of cells and moves the rest up. Sometimes, though, users will not use the macro and, instead, manually delete the block. It is a disaster if the deletion moves cells to the left instead of up. Chris wonders if there is a way to use the macros to enforce the upward moving of cells and preclude the manual movement of cells to the left.

As with many things in Excel, there are multiple ways that you can approach this problem. I cannot go too deep into specifics here, as any approach ultimately selected will depend on the nature of the information in the worksheet and what you want to allow or disallow. The following sections, however, may provide the key that you need to pick the approach that is best for you.

Protect the Worksheet

A simple (and effective) approach is to design your worksheet so it can be protected. Of course, you would make sure that any cells where the user should enter information are unprotected, but otherwise your macro can make sure that when the worksheet is activated, it is protected. This precludes the possibility of the user manually deleting any cells from the worksheet.

This means that if the range of cells does need to be deleted, the user is forced (by the protection) to select your macro for deletion. The macro can then unprotect the worksheet, delete the range of cells, and reprotect it.

Intercepting Deletes

Another macro-based approach is to work with the BeforeDelete event to control what actually happens. The following is a simple event handler that could be the basis of what you actually use:

Private Sub Worksheet_BeforeDelete()
    Dim delRng As Range
    Dim selRng As Range

    On Error Resume Next
    Set delRng = Range("C2:D5")  ' Change the range to the block
                                 ' of cells to be deleted (manually
                                 ' or by macro)
    Set selRng = Application.Selection  ' Cells selected manually
                                        ' by the user
    If MyRng.Address = delRng.Address Then
        Selection.Delete shift:=xlUp
    End If
End Sub

The event handler simply compares the range you want to have deleted only upwards with the range the user selected to delete. If the ranges are the same, then the handler deletes the range and moves it up. You would need to, obviously, change the range assigned to the delRng variable to match the range you want to monitor.

Remapping the Delete Key

Speaking of deleting, you could also remap the Delete key so that it does whatever you want. All you need to do is to include a macro like the following in the ThisWorkbook code module:

Private Sub Workbook_Open()
    Application.OnKey "{DELETE}", "MyMacro()"
End Sub

This means that when the workbook is opened, the Delete key is remapped so that whenever it is pressed, MyMacro (change this to whatever macro you desire) is automatically run.

Note that this approach affects only the pressing of the Delete key; it does not affect deletions done in any other way. For those, your macros would still need to anticipate and handle the logic.

The Complete Approach

That brings us to the complete approach. This approach simply means making a list of all the various ways that the user could initiate a deletion and then intercepting those ways. The list (and the interceptions) would necessarily need to include some of the approaches already discussed, such as handling the Delete key. You would also need to figure out how to disable or modify what happens when the user right-clicks or when the user selects a delete option from the ribbon. (You might even want to remove deletion-related options from the user interface.)

This approach can be quite long, as an exhaustive list of deletion methods could be laborious to put together and handle.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13632) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Preventing Printing

Want to prevent your worksheet from being printed? You may be out of luck, as a determined person may be able to find a ...

Discover More

Grouping Tiles on the Start Screen

The Start screen can serve as your launching pad for whatever programs you desire. You can move tiles around on the Start ...

Discover More

Useable Printed Pages with Markup

When you create documents that rely on markup (tracked changes and comments), getting usable printed output that includes ...

Discover More

Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!

More ExcelTips (ribbon)

Reversing Cell Contents

Macros are great at working with text. This tip presents an example that shows this versatility by reversing the contents ...

Discover More

Selecting to the Bottom of a Column in a Macro

Need to select a range of cells in a column? This tip can help, as it shows how to select from a specific cell all the ...

Discover More

Forcing a Macro to Run when a Worksheet is Recalculated

Normally a macro is only calculated when you specifically tell Excel to calculate it. Some macros need to be calculated ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is five more than 3?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.