+ Reply to Thread
Results 1 to 5 of 5

vlookup with Name Ranges

Hybrid View

  1. #1
    Registered User
    Join Date
    08-15-2007
    Posts
    2

    vlookup with Name Ranges

    Hello, little help please


    In the vlookup formula I know you can use a name range as below:


    =VLOOKUP(A3,named_rage,1,FALSE)

    but is it possible to refer to the “named_range” through a cell

    E.g.

    =VLOOKUP(A3,A3,1,FALSE)


    Can you use the contents of cell A3 to refer to the named_range????

    And if so how???


    Note there are many “named_ranges” on multiple sheets



    Thanking you in advance

  2. #2
    Registered User
    Join Date
    08-15-2007
    Posts
    3

    One solution

    I just wrote a quick procedure to evaluate the formulas you give it. This would work with way more than just vlookup too.

    In a module;

    Function EvaluateFormula(sString As String) As String

    EvaluateFormula = Evaluate(sString)

    End Function

    In a cell;

    =EvaluateFormula("VLOOKUP(3," & C1 & ",2)")
    This expression evaluated to "D" (check the table below)

    The value of C1 = "LookupRange"

    LookupRange is a named range that points to a group of data elsewhere on the sheet. Like this:
    0 A
    1 B
    2 C
    3 D
    4 E
    5 F
    6 G
    7 H
    8 I
    9 J

  3. #3
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Quote Originally Posted by mark_fairfield
    Hello, little help please


    In the vlookup formula I know you can use a name range as below:


    =VLOOKUP(A3,named_rage,1,FALSE)

    but is it possible to refer to the “named_range” through a cell

    E.g.

    =VLOOKUP(A3,A3,1,FALSE)


    Can you use the contents of cell A3 to refer to the named_range????

    And if so how???


    Note there are many “named_ranges” on multiple sheets




    Thanking you in advance

    TRY:

    =VLOOKUP(A1,INDIRECT(A3),1,FALSE)
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  4. #4
    Registered User
    Join Date
    08-15-2007
    Posts
    2
    Cheers

    I am trying to work with formulas rather than modules


    INDIRECT worked perfectly


    Many Thanks

  5. #5
    Registered User
    Join Date
    08-15-2007
    Posts
    3

    Wink nice

    well, I guess I learned something too... thanks!

+ 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