Written by Allen Wyatt (last updated May 28, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365
In Excel 2007, Brooke notes that there is an icon to paste values that looks like a clipboard with the #12 on it. (She pastes pictures from Publisher.) In Excel 2019, to get the same results, Brooke needs to paste as Picture: Enhanced Metafile, which means two extra steps: she has to go to the Paste icon, then Paste Special, then select Enhanced Metafile. Brooke wonders if there is a way to create the Enhanced Metafile option in one click.
It can be infuriating when Microsoft makes changes in how things work in Excel. Even though the change might appear to be small or subtle, it can greatly affect how people work with the program. It seems that Brooke's issue is one such instance.
The best solution to this issue is to create a macro to do your pasting. The macro doesn't need to be complex or convoluted; it simply needs to paste whatever is in the Clipboard in the way you want it pasted. Here is an example:
Sub EnhancedMeta()
ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
End Sub
The macro attempts to paste the image into the current cell in the Enhanced Metafile format that Brooke desires. I say "attempts" because if such an image is not in the Clipboard, then the macro will fail with an error.
The macro can be assigned to a shortcut key or placed on the Quick Access Toolbar (or both), which would give Brooke the one-click action that she desires.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (7838) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, 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!
Excel makes it easy to transpose your data so that rows become columns and columns rows. It doesn't have a built-in ...
Discover MoreWant to add a bunch of blank rows to your data and have those rows interspersed among your existing rows? Here's a quick ...
Discover MoreEnter information into a cell, and Excel needs to figure out what type of information it is. Here's how Excel interprets ...
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 © 2026 Sharon Parq Associates, Inc.
Comments