Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Shortcut Key for Format Painter.
Written by Allen Wyatt (last updated February 4, 2023)
This tip applies to Excel 97, 2000, 2002, and 2003
Fred loves to use the Format Painter, but doesn't like to use the mouse to use the tool. He would find it much easier to use if there were a shortcut key instead. Unfortunately, Excel doesn't provide a single shortcut key you can use for the Format Painter. You can, however, use the following steps:
In step 4 you could also press Shift+F10 rather than Alt+E. The first displays the Context menu for the cells and the other uses the regular menu system.
If you prefer a real shortcut key (only a single key press), then you will need to develop your own macro to paste only the format. The following is an example of such a macro.
Sub PasteSpecialFormats() If Application.CutCopyMode = False Then Beep MsgBox "No formatting in Clipboard" Else Selection.PasteSpecial Paste:=xlFormats End If End Sub
To use the macro, follow steps 1 through 3 as previously outlined, and then run the macro. Since the macro can be assigned to a shortcut key, you end up with an easier shortcut than what has already been discussed.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3225) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Shortcut Key for Format Painter.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
Have you ever entered information in a cell only for it to appear as hash marks? This tip explains why this happens, how ...
Discover MoreIf you are familiar with decimal tabs in Word, you may wonder if you can set the same sort of alignment in Excel. The ...
Discover MoreOne of the tools available for formatting cells is one called "Currency." This can be misleading, as it doesn't really ...
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 menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon 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