Results 1 to 9 of 9

Using multiple values to find another value

Threaded View

  1. #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

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