+ Reply to Thread
Results 1 to 2 of 2

Unused Named Cells

Hybrid View

  1. #1
    Registered User
    Join Date
    06-14-2007
    Posts
    18

    Exclamation Unused Named Cells

    Hi

    I have compiled a spreadsheet using a previous file I had created.

    As the data compiled is vastly different than the last I have a huge drop down list within the 'Name Box' of previously named cells/ranges.

    Is there a way to purge this list deleting redundant names without checking each ones integrity. (This list runs into hundreds, so will be a long process)

    Will appreciate anyone's help

    Regards

    Steve

  2. #2
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967
    This macro should do it.

    Sub Test()
    For Each Name In ActiveWorkbook.Names
        Name.Delete
    Next Name
    End Sub
    I'm not sure what you meant be redundant. If you mean contains no data then use..

    Sub Test()
    For Each Name In ActiveWorkbook.Names
        If Application.CountA(Range(Name.RefersToRange.Address)) = 0 Then
            Name.Delete
        End If
    Next Name
    End Sub
    Martin

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1