+ Reply to Thread
Results 1 to 11 of 11

Index match ascend between 2 sheets

  1. #1
    Registered User
    Join Date
    03-26-2013
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    19

    Index match ascend between 2 sheets

    I'm not finding much on INDEX MATCH ASCEND BETWEEN 2 SHEETS and 2 COLUMNS, other then tediously do each pair of columns VBA Asecend, which is what I am trying to avoid.

    How is the Formula to do this please ?

    Sheet1 Column A2:A26 and Sheet1 Column B2:B26 is the source

    Sheet2 Column A2:A26 and Sheet2 Column B2:B26 is the the Ascended of Sheet 1

    The Reference to Ascend values is from Sheet 1 B2:B26, but must match the same in Column A

    So if A2: A26 is, 1,2,3,4,5....and

    B2:B26 is and asortment of negative, 0 and positive values, then the lowest value
    is to be shown first on Sheet2.
    -----------
    Sheet 1
    A B
    ------------
    1. 10.
    2. 5
    3. 0
    4. -15
    5. 3
    then Sheet 2's INDEX is:
    -----------
    Sheet 2
    A B
    ------------
    4. -15
    3. 0
    5. 3
    2. 5
    1. 10

    If blank, show "",


    Thanks
    Last edited by BoZD; 07-07-2014 at 11:35 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
    52,945

    Re: Index match ascend between 2 sheets

    It might help if you uploaded a sample workbook, showing what you are working with and what you want?
    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
    Registered User
    Join Date
    03-26-2013
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Index match ascend between 2 sheets

    Sure, No Problem, Thanks.
    I've renamed the sheets
    Attached Files Attached Files

  4. #4
    Valued Forum Contributor Saarang84's Avatar
    Join Date
    02-19-2009
    Location
    Chennai, India
    MS-Off Ver
    XL 2003 to 2010
    Posts
    812

    Re: Index match ascend between 2 sheets

    Hi,

    In the 2nd sheet, in column C, you can use either of the below formulas, they will give you identical result.
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    or
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Is this what you need?
    If my assistance has helped, there is a reputation icon * on the left hand corner below the post - you can show your appreciation to the user who has helped in resolving your requirement.

    If your requirement has been solved please mark your thread as Solved.
    In the menu bar above the very first post, select Thread Tools, then select "Mark this thread as Solved".

    Kindly use [FORMULA] or [CODE] tags when posting your code.

    Regards,
    Sarang

  5. #5
    Registered User
    Join Date
    03-26-2013
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Index match ascend between 2 sheets

    Thanks for replying Saarang84 ,
    I'm not sure I understand the formula, I've uploaded a workbook since as suggested, showing
    precisely how the result has to be.

  6. #6
    Forum Expert
    Join Date
    03-28-2014
    Location
    Hyderabad,India
    MS-Off Ver
    Excel 2013
    Posts
    1,887

    Re: Index match ascend between 2 sheets

    Hi BOZD,

    I have observed the value of 5 in "INDEX FORMULA HERE" is 9.170 & the same is not present in "Data" Sheet.

    and for the rest
    =INDEX(DATA!$C$2:$C$13,MATCH('INDEX FORMULA HERE'!B2,DATA!$B$2:$B$13,0))

    This is working fine.

    Punnam

  7. #7
    Valued Forum Contributor Saarang84's Avatar
    Join Date
    02-19-2009
    Location
    Chennai, India
    MS-Off Ver
    XL 2003 to 2010
    Posts
    812

    Re: Index match ascend between 2 sheets

    Quote Originally Posted by BoZD View Post
    Thanks for replying Saarang84 ,
    I'm not sure I understand the formula, I've uploaded a workbook since as suggested, showing
    precisely how the result has to be.
    Did you try any one of the formulas in my post #4 ?

  8. #8
    Forum Expert
    Join Date
    08-12-2012
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    5,636

    Re: Index match ascend between 2 sheets

    see attached file

    Small/row to get ranking/ascend
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    index/match to get number
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    C266 should be C26 but just means longer array
    Attached Files Attached Files
    Last edited by humdingaling; 07-08-2014 at 02:31 AM. Reason: typo putting in C266 but formula works
    If you are satisfied with the solution(s) provided, please mark your thread as Solved.
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  9. #9
    Registered User
    Join Date
    03-26-2013
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Index match ascend between 2 sheets

    Thank for your replies, but not working as I thought.

    Have added another workbook with macro showing the exact result in sheet 2

    Just F8 macro, and it's the ascending order that's required, but with formula.

    The other reason I need within the formula range, if blank, then show blank, because not
    always the entire range is populated.
    Currently there are 12 ( 24 ) cells populated in this example, but at other times there are
    more or less, but always no more than 26.
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    03-26-2013
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Index match ascend between 2 sheets-SOLVED

    Worked it out, thanks all, hope this helps others
    Attached Files Attached Files

  11. #11
    Registered User
    Join Date
    03-26-2013
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Index match ascend between 2 sheets

    slight oversight

    corrected formula
    Please Login or Register  to view this content.
    It still does not get the value from Sheet 1, I get an error, but it will do for now.
    Last edited by BoZD; 07-08-2014 at 10:36 AM.

+ 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 using two sheets for Criteria to Match
    By Locust in forum Excel General
    Replies: 3
    Last Post: 12-01-2013, 12:45 PM
  2. Multiple Sheets Match & Index filtering by sheets
    By ijulian in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-24-2012, 01:49 PM
  3. [SOLVED] INDEX,MATCH across two sheets
    By slash_gnr3k in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-09-2012, 11:18 AM
  4. Index/Match several sheets to one
    By overbomb in forum Excel General
    Replies: 2
    Last Post: 03-12-2012, 01:02 PM
  5. INDEX & MATCH - Different Sheets
    By Harlequin in forum Excel General
    Replies: 4
    Last Post: 08-30-2007, 06:43 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