Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Turning Off AutoFill for a Workbook.
Written by Allen Wyatt (last updated May 21, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021
The AutoFill feature of Excel can be a great timesaver when entering information. However, you may want to disable the feature for a particular workbook; perhaps you don't want the feature to be used by anyone using your workbook. Doing so is easy if you create a macro that can recognize when you are working with that particular workbook.
To turn off the AutoFill feature for a particular workbook, follow these steps:
Private Sub Workbook_Activate() Application.CellDragAndDrop = False End Sub
Private Sub Workbook_Deactivate() Application.CellDragAndDrop = True End Sub
The first macro is only run when the particular workbook is activated. In other words, when the workbook attains focus or is selected. When a different workbook attains focus, then the second macro is executed.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11197) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Excel here: Turning Off AutoFill for a Workbook.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
AutoFill can be a real timesaver if you often work with set lists of data. You can define your own custom lists and then ...
Discover MoreThe AutoFill feature can be used for more than just incrementing information into cells. This tip explains how to access ...
Discover MoreAutoFill is a great editing tool that comes in particularly handy when you are first creating a worksheet. You may, at ...
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