<<Convert Excel Spreadsheets to Web Pages | Trading Software That Operates Within Excel | Convert Excel, Access & Other Databases | Merge Excel Files>> |
---|
Current Special! Complete ExcelExcel Training Course for Excel 97 - Excel 2003, only $145.00. $59.95 InstantBuy/Download
Deleting Excel Named Ranges
As most reading this page will know, Excel provides many ways to create and useNamed Rangesin Excel. However, when you have a lot of named ranges it is a tedious task to delete them all, or specific named ranges. In fact, the only way via the standard Excel interface is via Insert>Name>Define one at a time!
The 2 Excel VBA Macros below can be used to delete named ranges. Use the best suited one for your circumstance.
Delete Dead (#REF!) Excel Named Ranges
Sub DeleteDeadNames()Dim nName As Name For Each nName In Names If InStr(1, nName.RefersTo, "#REF!") > 0 Then nName.Delete End If Next nName End Sub
Delete Chosen Excel Named Ranges
Sub DeleteChosenNames()Dim nName As NameDim lReply As Long For Each nName In Names lReply = MsgBox("Delete the named range " & nName.Name _ & vbNewLine & "It refers to: " & nName.RefersTo, _ vbQuestion + vbYesNoCancel, "Ozgrid.com") If lReply = vbCancel Then Exit Sub If lReply = vbYes Then nName.Delete Next nName End Sub
To use either of the above codes, go to Tools>Macro>Visual Basic Editor (Alt+F11) then go to Insert>Module. After pasting in the wanted code, go back to Excel proper and then to Tools>Macro>Macrosand Run the chosen macro.
Excel Dashboard Reports & Excel Dashboard Charts 50% Off Become an ExcelUser Affiliate & Earn Money
Special! Free Choice of Complete Excel Training Course OR Excel Add-ins Collection on all purchases totaling over $64.00. ALLpurchases totaling over $150.00 gets you BOTH! Purchases MUST be made via this site. Send payment proof to [email protected] 31 days after purchase date.
Instant Download and Money Back Guarantee on Most Software
Excel Trader PackageTechnical Analysis in Excel With $139.00 of FREE software!
Microsoft � and Microsoft Excel � are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft
Some of our more popular products are below...
Convert Excel Spreadsheets To Webpages | Trading In Excel | Construction Estimators | Finance Templates & Add-ins Bundle | Code-VBA | Smart-VBA | Print-VBA | Excel Data Manipulation & Analysis | Convert MS Office Applications To...... | Analyzer Excel | Downloader Excel | MSSQL Migration Toolkit | Monte Carlo Add-in | Excel Costing Templates