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:
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.
Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!
Write out a check and you need to include the digits for the amount of the check and the value of the check written out ...
Discover MoreNeed to use a macro to select a specific cell in a different workbook? It's not as straightforward of a proposition as ...
Discover MoreMacros are great for working with strings, and one of the most commonly used string functions is Len. This tip explains ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments