+ Reply to Thread
Results 1 to 6 of 6

Variable as Name

Hybrid View

rakotonirinas Variable as Name 09-06-2021, 06:38 AM
romperstomper Re: Variable as Name 09-06-2021, 06:43 AM
TMS Re: Variable as Name 09-06-2021, 06:54 AM
Greg M Re: Variable as Name 09-06-2021, 07:02 AM
rakotonirinas Re: Variable as Name 09-08-2021, 05:32 AM
TMS Re: Variable as Name 09-08-2021, 06:02 AM
  1. #1
    Forum Contributor
    Join Date
    09-02-2013
    Location
    London
    MS-Off Ver
    Excel 2019
    Posts
    368

    Variable as Name

    Hello everyone,
    I came across this function macro. It looks pretty simple yet I have no idea how to understand it particularly the variable defined as Name.
    Would someone be able to explain please as I never came across this before and I'm still in the bottom learners when it comes to vba.
    Thank you.

    Function NomDefini(Nom As String) As Boolean
    Dim Noms As Name
    NomDefini = False
    For Each Noms In ThisWorkbook.Names
        If Noms.Name = Nom Then NomDefini = True: Exit Function
    Next Noms
    End Function

  2. #2
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Variable as Name

    It checks whether there is a defined Name (Formulas tab, Name manager) with the specified name in the workbook.
    Everyone who confuses correlation and causation ends up dead.

  3. #3
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,243

    Re: Variable as Name

    Looks like it was written in French, either because the author was French or s/he was avoiding using reserved words like Name and Names. Rory has explained the reason/use for/of the function.
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  4. #4
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,641

    Re: Variable as Name

    Hi there,

    The function is used to determine whether or not a specifically-named workbook-level Name has been defined in a workbook.

    The following code shows an annotated English-language version of the routine, and also an alternative way of determining the result:

    
    
    
    Option Explicit
    
    
    '=========================================================================================
    '=========================================================================================
    
    
    Function mbNameExists__Version_1(sNameToFind As String) As Boolean
    
        Dim bNameExists As Boolean
        Dim nam         As Name
    
    '   Assume that the Name does NOT exist
        bNameExists = False
    
    '   Scan through each workbook-level defined Name
        For Each nam In ThisWorkbook.Names
    
    '       Check whether or not the name of the current Name is the same as the name to find
            If nam.Name = sNameToFind Then
    
    '           The name IS the same, so flag this
                bNameExists = True
    
    '           The name has been located, so there's no need to check anything else
                Exit For
    
            End If
    
        Next nam
    
    '   Return the appropriate value to the calling routine
        mbNameExists__Version_1 = bNameExists
    
    End Function
    
    
    '=========================================================================================
    '=========================================================================================
    
    
    Function mbNameExists__Version_2(sNameToFind As String) As Boolean
    
        Dim nam As Name
    
    '   Temporarily disable error handling
        On Error Resume Next
    
    '       Initialise the variable
            Set nam = Nothing
    
    '       Assume that the Name DOES exist, and ignore any error if it does not
            Set nam = ThisWorkbook.Names(sNameToFind)
    
    '   Re-enable error handling
        On Error GoTo 0
    
    '   Return the appropriate value to the calling routine
        If Not nam Is Nothing Then
              mbNameExists__Version_2 = True
        Else: mbNameExists__Version_2 = False
        End If
    
    End Function

    Hope this helps.

    Regards,

    Greg M
    Last edited by Greg M; 09-06-2021 at 07:07 AM. Reason: Typo corrected

  5. #5
    Forum Contributor
    Join Date
    09-02-2013
    Location
    London
    MS-Off Ver
    Excel 2019
    Posts
    368

    Re: Variable as Name

    I finally managed to understand the whole function. Very grateful for all your help and contribution. All best.

  6. #6
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,243

    Re: Variable as Name

    You're welcome.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Public variable and Runtime error 91: Object Variable or With block variable not set
    By Frank Nunez in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 10-31-2020, 04:02 PM
  2. [SOLVED] Object variable or With block variable not set when copying chart to outlook email body
    By jprlimey in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-09-2019, 04:17 PM
  3. [SOLVED] Macro to select a variable cell range and copy it down a variable amount of times
    By JPoFresh in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 07-18-2019, 09:17 PM
  4. Replies: 3
    Last Post: 02-17-2015, 11:53 PM
  5. Replies: 4
    Last Post: 07-12-2013, 12:14 PM
  6. Replies: 6
    Last Post: 12-21-2012, 08:03 AM
  7. Replies: 3
    Last Post: 11-21-2012, 03:28 PM

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