+ Reply to Thread
Results 1 to 3 of 3

Linking data in cells among worksheets

  1. #1
    Registered User
    Join Date
    02-18-2011
    Location
    Shenzhen, China
    MS-Off Ver
    Excel 2007
    Posts
    10

    Linking data in cells among worksheets

    I'm trying to create a workbook that has 3 worksheets. The goal is to pull edited information from an excel file into the workbook.

    Worksheet 1: General information
    Worksheet 2: Weekly updates
    Worksheet 3: Monthly updates (initial load)

    At the beginning of the month (i.e. the initial load). The information is pasted in WS 3. I have a Vlookup to linked to WS 1 to pull information from WS 1 to WS 3.

    On WS 2, I created a index/match function to pull the information from WS 3 to WS 2. It works fine as long as the information on WS 3 matches (row/column) the information on WS 2. However, if I upload new data into WS 2 (same data, but the order changes) the index/match formula does not work.

    The Vlookup is tied to a customer ID # on WS 1. The index/match is tied to a sales order #.

    Am I not using the index/match correctly or is there a better function (formula) in excel to use rather than the index/match? I would like to keep this as simple as possible. would appreciate any advice to better understand this challenge.
    Attached Files Attached Files
    Last edited by chinanomad; 05-17-2018 at 08:04 PM.

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Index, Match

    Please take a moment to read the forum rules and then amend your thread title to something descriptive of your problem - not what you think the answer might be. (think google search terms?). Once you have done this please send me a PM and I will remove this request. (Also, include a link to your thread - copy from the address bar)

    Many members search our previous posts, and thread titles play a big part of the search. I doubt anybody would do a search based on your title?

    To change a Title on your post, click EDIT POST then Go Advanced and change your title, if 2 days have passed ask a moderator to do it for you.

    (note: this change is not optional )
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Linking data in cells among worksheets

    Thanks for the title change

    A few observations...
    1. On Initial, although the way you have your vlookup, is working, the search criteria really should be a single cell...
    instead of...
    =VLOOKUP($A$2:$A$5,'Sheet 1'!$A$2:$C$32,3,FALSE)
    rather use...
    =VLOOKUP($A2,'Sheet 1'!$A$2:$C$32,3,FALSE)
    copied down

    2. On sheet2 col Q&R, you are searching in a range that already contains the criteria. Realistically, you should have a criteria in 1 cell, and search for that in a totally different range - else why even bother to search for it?
    MATCH('Sheet 2'!J3,'Sheet 2'!$J$2:$J$5,0)
    You are searching for J3 in the range J2:J5, so it will always return the same relative row number

    Which sheet gets the new data with each update, and which sheets go and fetch/reference parts of that update?

+ 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] INDEX+MATCH instead of VLOOKUP+MATCH, why is INDEX a better choice and how to re-write?
    By Renejorgensen in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-23-2016, 10:54 AM
  2. [SOLVED] Index / Match - match 3 input values and return the results from the index
    By t83357 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-08-2016, 07:34 PM
  3. [SOLVED] Match-Index in stead of Index-Match lookup Array among Arrays
    By Numnum in forum Excel General
    Replies: 2
    Last Post: 10-15-2015, 02:08 PM
  4. INDEX MATCH MATCH/OFFSET MATCH MATCH with named ranges
    By Andrew-Mark in forum Excel General
    Replies: 3
    Last Post: 02-27-2015, 10:56 PM
  5. Replies: 6
    Last Post: 04-30-2014, 02:42 AM
  6. Replies: 6
    Last Post: 11-08-2013, 10:29 PM
  7. Replies: 3
    Last Post: 05-02-2013, 01:31 AM

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