+ Reply to Thread
Results 1 to 9 of 9

Using multiple values to find another value

Hybrid View

  1. #1
    Registered User
    Join Date
    12-07-2018
    Location
    London
    MS-Off Ver
    2016
    Posts
    9

    Using multiple values to find another value

    Hi,

    I have a list of destinations and packages on one tab and another tab with the destinations, package and a code.

    I am trying to use the data in the 1st tab to search the 2nd tab to fill in the 3rd tab with the code.

    E.G in the 1st tab I have:
    Destination Package
    Australia 3G

    in the 2nd tab:
    Destination Package Code
    Australia 3G DHI_AU_DP_3GSpeed

    And I want the formula in the 3rd tab to return the code based of the selection in the first tab.

    I have tried Vlookup and Match but I can't quite figure out what I need or even if they are the right functions to use.

    Attached an example sheet.

    Any help appreciated thanks!
    Attached Files Attached Files

  2. #2
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,919

    Re: Using multiple values to find another value

    Could you show us what a handful of your expected results are?

    BSB

  3. #3
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Using multiple values to find another value

    I am not quite sure how you want to display this.

    First of all, I converted the data ranges into tables, because tables "know" how big they are and you can address columns by column header name. This makes formulas easier to understand and code easier to write.

    I assumed that what makes a record unique is the combination of country and package, so I made a composite by combining both in each of the tables so I had something to match upon.

    On Tab1 there is a Cell Selection event that runs the code any time any cell in the table is selected.

    This code looks up the composite found for that row on Tab1 and looks for it in the composite column in Tab2. If it finds it, it displays the information on the first row in the Extractor Tab. If the value is not found, a pop-up box is displayed.
    Attached Files Attached Files
    One spreadsheet to rule them all. One spreadsheet to find them. One spreadsheet to bring them all and at corporate, bind them.

    A picture is worth a thousand words, but a sample spreadsheet is more likely to be worked on.

  4. #4
    Registered User
    Join Date
    12-07-2018
    Location
    London
    MS-Off Ver
    2016
    Posts
    9

    Re: Using multiple values to find another value

    Thanks for your reply. I have updated my example with more data and how I want to display it.

    What I am trying to figure out is the following:
    I have a column on the tab "Extractor" called "Offering". To populate this column I need to use "Country" and "Code" in the "Order" tab to check the "Codes" tab and return the result form the column "Offering" into the extractor based on the order "No."
    Attached Files Attached Files

  5. #5
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Using multiple values to find another value

    On the order tab you enter The order number, country, start and end date and you expect the formula to get the correct code. Is this what you want? If so, in your example for Afghanistan, which one of the two records do you want returned? Obviously the first one, but how did you make that decision?

  6. #6
    Registered User
    Join Date
    12-07-2018
    Location
    London
    MS-Off Ver
    2016
    Posts
    9

    Re: Using multiple values to find another value

    Hey,

    On the order tab I enter the order number, country, start and end date and want the formula to pull the correct code from the column "offering" in the "code" tab and enter it into the column "offering" in extractor based on the order "no.".

    E.G If someone orders Afghanistan 3G it fills the extractor column "offering" with DHI_AF_DP_3GSpeed and if 4G DHI_AF_DP_4GSpeed as these are what I need to send to the supplier using the extractor.
    Last edited by Tortoise90; 01-31-2019 at 01:48 PM.

  7. #7
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Using multiple values to find another value

    I will repeat my question in different words.

    On the Codes sheet there are two different records for Afghanistan on rows 2 and 3. When I enter Afghanistan in cell B2 on the Order List, how do I know which one of these two records to use? How do I know whether to select 3G or 4G and put it in cell E2?

    I can see a way that if I enter Afghanistan in Cell B2 and I enter 3G in Cell E2 then I can look up DHI_AF_DP_3GSpeed and place it in cell F2.

  8. #8
    Registered User
    Join Date
    12-07-2018
    Location
    London
    MS-Off Ver
    2016
    Posts
    9

    Re: Using multiple values to find another value

    Right I see. Sorry!

    "I can see a way that if I enter Afghanistan in Cell B2 and I enter 3G in Cell E2 then I can look up DHI_AF_DP_3GSpeed and place it in cell F2."

    That would be perfect for what I need to do thanks.

  9. #9
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Using multiple values to find another value

    The first thing I did was change the data ranges on the Order Sheet and Code Sheet to Excel Tables because Excel Tables "know" how big they are, and they copy down formulas automatically. You can add new cods to the code table and not have to change the formula on the order table. When you add a new order number, it becomes part of the order table and the formula for the offering is copied down automatically.

    Also tables allow you to address columns by header name which makes understanding the formulas easier and even helps with VB coding.

    Since it is the combination of Country and Code that makes a record unique, I created a composite key as a helper column in the code table: =TRIM([@Country])&":"&TRIM([@Code]) - this is nothing more than the two strings concatenated together. I usually stick some sort of delimiter (in this case a colon) between the parts just to make it more human readable. Also in this case, I had to add TRIM because some of the country or code names have trailing or leading blanks.

    On the Order Sheet, I look up the record using MATCH on the composite key and INDEX =IFERROR(INDEX(Table_Codes,MATCH(TRIM([@Country])&":"&TRIM([@Code]),Table_Codes[Composite],0),3),"No Offering")

    Here is some more information on Excel Tables: http://www.utteraccess.com/wiki/Tables_in_Excel

    I also recommend adding data validation (it copies down automatically in tables too) to check:
    - the proper number of digits are added for the order number
    - Use a drop-down list validation for country and Code
    - Use a date validation for Start and End Dates

    Establish the validation in the first row, and then Copy -> Paste Special -> Validation for the rest of the rows. Once every row has the same validation, it will be added automatically to all new rows from then on.

    Here is information on data validation: http://www.utteraccess.com/wiki/Data_Validation
    Attached Files Attached Files

+ 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] Macro to Find and Replace Multiple Values Across Multiple Sheets
    By MattyD123 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 12-09-2018, 10:44 PM
  2. Replies: 2
    Last Post: 05-26-2015, 07:29 PM
  3. Find multiple values in multiple ranges and produce results in a list
    By Sc0tt1e in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-07-2014, 02:11 AM
  4. [SOLVED] Faster way to find and replace multiple values with corresponding values
    By babbeleme1 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-18-2013, 06:50 PM
  5. How to find closest values in multiple columns and return adjacent values.
    By Patrician in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 01-28-2013, 01:47 PM
  6. Find and compute multiple values from multiple tables
    By canada123 in forum Excel General
    Replies: 2
    Last Post: 07-18-2011, 09:00 PM
  7. Find and Replace values from multiple lookup values
    By Gregula82 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-22-2007, 03:12 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