+ Reply to Thread
Results 1 to 4 of 4

identify defined names in VBA code

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-31-2007
    Location
    Aschaffenburg, Germany
    MS-Off Ver
    Office 2013
    Posts
    104

    identify defined names in VBA code

    Using Excel 2003 VBA, I couldn't find a possibility to find out the defined name of a selected range, especially when I don't know that range as in a Worksheet_Change macro, so I created the below function.

    Does anybody know an easier way to do this without having to use the .ListNames command which will write the names and references into a spread sheet?

    Any help will be welcome!

    Mike


    Public Function CellNickName(CellAddr, FirstListRow, FirstListColumn)
      ' CellAddr is the target.address (e.g. "$A$1") returned by a, e.g., Worksheet_Change macro
      Set li = Sheets("Lists")
      li.Cells(FirstListRow, FirstListColumn).ListNames ' Lists all Defined Names in the 1st specified column and references in the 2nd one
      tabName = "='" & ActiveSheet.Name & "'!" ' Identifies the sheet in which you are looking for defined names
      SecondListColumn = FirstListColumn + 1
      li.Columns(SecondListColumn).Replace What:=tabName, Replacement:="" ' removes "=Sheetname!" from cells
      CellNickName = ""
      i = 1
      Do Until IsEmpty(li.Cells(i, SecondListColumn)) ' check if the selected CellAddr matches a defined name
        If li.Cells(i, SecondListColumn) = CellAddr Then CellNickName = li.Cells(i, FirstListColumn): Exit Do
        i = i + 1
      Loop
      li.Columns(FirstListColumn).ClearContents: li.Columns(SecondListColumn).ClearContents
    End Function

  2. #2
    Forum Contributor
    Join Date
    06-27-2006
    Posts
    310
    Function ExactRangeName(Rng As Range) As String
    On Error Resume Next
    ExactRangeName = Rng.Name.Name
    End Function
    http://www.cpearson.com/excel/named.htm

    example using target
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If ExactRangeName(Target) <> "" Then
    MsgBox ExactRangeName(Target)
    End If
    End Sub
    condensed without using a seperate function
    Private Sub Worksheet_Change(ByVal Target As Range)
    On Error GoTo ErrorHandler
    If Target.Name.Name = "InterestRate" Then
    MsgBox "You changed the interest rate"
    End If
    ErrorHandler:
    End Sub
    Last edited by SuitedAces; 01-09-2008 at 02:32 PM.

  3. #3
    Forum Contributor
    Join Date
    06-27-2006
    Posts
    310
    They teach good manners in germany apparently.

  4. #4
    Forum Contributor
    Join Date
    01-31-2007
    Location
    Aschaffenburg, Germany
    MS-Off Ver
    Office 2013
    Posts
    104

    You're my hero

    Thanks, SuitedAces, this is great help!

    I wonder how someone finds out such syntax. I could not find Target.Name.Name in VBA Help.
    Of course, I stumbled across Target.Name, but this only gives me "=Sheet1!$A$1".

    You made my day!

    Mike

+ 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