+ Reply to Thread
Results 1 to 8 of 8

Help with Vlookup - Storing several values on a variable

  1. #1
    Registered User
    Join Date
    04-15-2011
    Location
    Porto
    MS-Off Ver
    Excel 2003
    Posts
    18

    Help with Vlookup - Storing several values on a variable

    Hi,

    I have attached to this post a file explaining my goal:

    On cell B5 we enter a % and based on the table I have made, I get a price on cell B8.

    This is a simple and classic example on how the Vlookup function works.

    What I wanted to know how to do is, how to do all this in VBA. The only thing that would be on the worksheet would be the cell B5 asking for the % - the price value would be recorded on a vairable to be used on a diferent calculation.

    So,how do I create on VBA that table? And how I use the vlookup function to search?

    I am used to programme in R. In R I would create an object with all my table values. Then I would create my querry asking it to search the value I want on the object containing the table. How is this done in VBA?

    thanks
    Dedes
    Attached Files Attached Files

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Help with Vlookup - Storing several values on a variable

    Hello Dedes,

    Here is what the VBA macro would look like.
    Please Login or Register  to view this content.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    04-15-2011
    Location
    Porto
    MS-Off Ver
    Excel 2003
    Posts
    18

    Re: Help with Vlookup - Storing several values on a variable

    Quote Originally Posted by Leith Ross View Post
    Hello Dedes,

    Here is what the VBA macro would look like.
    Please Login or Register  to view this content.
    Hi Leith

    Thanks for the reply.

    But to use the code you have put here I need to have the table on the worksheet. Can't I avoid that? I wish to create the table in VBA. Is this possible?

    thanks
    Dedes

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Help with Vlookup - Storing several values on a variable

    Hello Dedes,

    I am sorry but I am not following you on "VBA creating the table". The table is a range of cells on the worksheet. VBA can not create cells or worksheets. You can only assign object variables to them.

  5. #5
    Registered User
    Join Date
    04-15-2011
    Location
    Porto
    MS-Off Ver
    Excel 2003
    Posts
    18

    Re: Help with Vlookup - Storing several values on a variable

    Hi

    Sorry, i will try to make myself explain better.

    I don't want that table to be seen on the worksheet. I wish to do everything in code.

    How can I put all that info - the info that is on the table - on my VBA module and run the Vlookup?

    thanks
    Dedes

  6. #6
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Help with Vlookup - Storing several values on a variable

    Hello Dedes,

    If you want the table hidden then hide columns "D" and "E". The VLOOKUP worksheet will still function. The macro I wrote will also work with the columns hidden.

  7. #7
    Registered User
    Join Date
    04-15-2011
    Location
    Porto
    MS-Off Ver
    Excel 2003
    Posts
    18

    Re: Help with Vlookup - Storing several values on a variable

    Quote Originally Posted by Leith Ross View Post
    Hello Dedes,

    If you want the table hidden then hide columns "D" and "E". The VLOOKUP worksheet will still function. The macro I wrote will also work with the columns hidden.
    And instead of hiding it, is there a way of making this work without writting the table values on the worksheet?

    Dedes

  8. #8
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Help with Vlookup - Storing several values on a variable

    Hello Dedes,

    I am not sure why you don't want to use a worksheet to hold the table data but the only other option is to place the data in a separate file and read the file from VBA. This is neither a very flexible nor direct method to handle the data on a worksheet. Using worksheet functions is a much better choice.

    You won't be able to use the VLOOKUP function with the file data because it requires the table to be Range object and not a numeric array. All the searching and comparing will have to handled by VBA macros. If you plan to use other formulas on the sheet, the data could become difficult to manage.

+ 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