+ Reply to Thread
Results 1 to 3 of 3

Index Match Formula, can index be fixed?

  1. #1
    Registered User
    Join Date
    01-10-2015
    Location
    Silverado, CA
    MS-Off Ver
    Office 2010
    Posts
    5

    Index Match Formula, can index be fixed?

    I have an index match Formula that works great for the first row. But each row that I copy down, the references get all messed up. I need to have the match field change, but the remaining formula to remain. Is there a way to make certain references in an Excel formula fixed and others that will change when copied down to another row? I'll post the formula if this isn't enough to go off of. Thanks.

  2. #2
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Index Match Formula, can index be fixed?

    Yes, post the formula.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  3. #3
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,878

    Re: Index Match Formula, can index be fixed?

    You need to use absolute references, rather than relative references, and you can achieve that by putting $ symbols before the references. For example, if you have:

    =INDEX(A1:A100,MATCH(....

    then that will change to:

    =INDEX(A2:A101,MATCH(....
    =INDEX(A3:A102,MATCH(....
    =INDEX(A4:A103,MATCH(....

    and so on when you copy it down. Instead, you should change it to:

    =INDEX(A$1:A$100,MATCH(....

    so that the 1 and 100 do not change when you copy it down. You could also change it to:

    =INDEX($A$1:$A$100,MATCH(....

    so that the A does not change if the formula is copied across.

    You might also do the same to the range in the MATCH part of the formula.

    Hope this helps.

    Pete

+ 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] Converting Hlookup to Index Match with variable column index number
    By SimonLock in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 01-09-2015, 09:14 AM
  2. Replies: 6
    Last Post: 04-30-2014, 02:42 AM
  3. Replies: 6
    Last Post: 11-08-2013, 10:29 PM
  4. Replies: 3
    Last Post: 05-02-2013, 01:31 AM
  5. [SOLVED] VBA for creating Index-Match every 2 rows where INDEX refer to a different column per row
    By bisaya789 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-22-2012, 03:46 AM
  6. [SOLVED] Index & Match returning incorrect value. Arrays fixed and exact match used.
    By SDes in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 09-07-2012, 08:29 PM
  7. Index Match Index Formula work slow
    By avk in forum Excel General
    Replies: 9
    Last Post: 03-07-2012, 02:19 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