When you work with other people who use Excel, it is not unusual to copy worksheets from their workbooks into your own workbook. When you do so, the worksheet isn't the only thing that is copied—Excel also copies their formatting styles to your workbook. Manually deleting the unwanted styles can be a hassle, depending on the number of styles. Removing user-defined styles is very easy, though, if you use a macro. The following macro will quickly delete the unwanted styles:
Sub StyleKill() Dim styT As Style Dim intRet As Integer For Each styT In ActiveWorkbook.Styles If Not styT.BuiltIn Then intRet = MsgBox("Delete style '" & styT.Name & "'?", vbYesNo) If intRet = vbYes Then styT.Delete End If Next styT End Sub
The macro needs just a little user input. Whenever the macro detects a user-defined style, you are asked if you want to delete it. Clicking on the Yes button causes the style to be removed from the workbook.
You should be aware of the limitations of a macro approach such as this. The biggest limitation is that if your workbook is corrupted in any way (and, yes, it is very possible to have corruption in the styles in a workbook), this macro won't fix that corruption. Instead, you may want to look at a handy third-party solution (XLStylesTool) that can work wonders if you need to clean up your styles in a more comprehensive manner. You can find more information about XLStylesTool here:
https://sergeig888.wordpress.com/2011/03/21/net4-0-version-of-the-xlstylestool-is-now-available/
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12259) applies to Microsoft Excel 2007, 2010, 2013, and 2016. You can find a version of this tip for the older menu interface of Excel here: Deleting Unwanted Styles.
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!
If you get an error when you try to use one of your custom views, it could be due to the protection you have applied to ...
Discover MoreIf you want to apply a conditional format to data imported into Excel from Access, you may run into some difficulties ...
Discover MoreMoving your custom formats into a formatting category other than "custom" isn't something you can do in Excel. Here's ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2018-06-05 08:10:16
gerdami
Unprotect sheets before running this code otherwise styles won't be deleted.
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 © 2022 Sharon Parq Associates, Inc.
Comments