Results 1 to 5 of 5

Thread: Find the highest then lookup result

  1. #1
    Junior Member
    Join Date
    Mar 2013
    Posts
    17
    Rep Power
    0

    Find the highest then lookup result

    Morning all,

    In row 3 of my worksheet, i have the following data:

    B3 -> "Style 1"
    C3 -> (a number ranging from 1-18)
    D3 -> "Style 2"
    E3 -> (a number ranging from 1-18)
    F3 -> "Style 3"
    G3 -> (a number ranging from 1-18)
    H3 -> "Style 4"
    I3 -> (a number ranging from 1-18)

    I would like a formula that will look at the values in C3, E3, G3, I3 - find the highest numerical value and then return the text value that is in the cell to its left.

    for example:

    C3 = 2
    E3 = 7
    G3 = 3
    I3 = 6

    So the formula would see 7 (E3) as the highest, and return the text value to its left (D3) "Style 2"

    The formula will be in cell D2
    Kind regards

  2. #2
    Junior Member
    Join Date
    Mar 2013
    Posts
    3
    Rep Power
    0
    Hi,
    Try this =OFFSET(B3,0,MATCH(MAX(B3:I3),B3:I3,0)-2)

  3. #3
    Junior Member
    Join Date
    Dec 2012
    Posts
    16
    Rep Power
    0
    Hi Stalker

    The INDEX & MATCH will achieve this for you.

    =INDEX($B$3:$I$3,MATCH(LARGE(B3:I3,1),B3:I3,0)-1)
    Last edited by Kevin@Radstock; 03-29-2013 at 12:12 PM.

  4. #4
    Junior Member
    Join Date
    Mar 2013
    Posts
    17
    Rep Power
    0
    Hi Both,

    Thank-you very much for the input, i have tried both and they give me the same result!

    Rep addeed, thanks alot

  5. #5
    Member
    Join Date
    Nov 2011
    Posts
    41
    Rep Power
    0
    Hi Dear,

    You may also try this one...

    =VLOOKUP(MAX(C3:J3),C3:J3,MATCH(MAX(C3:J3),C3:J3,0 )+1)

    Regards
    Prince

Similar Threads

  1. Replies: 30
    Last Post: 04-15-2019, 07:36 PM
  2. Replies: 4
    Last Post: 04-24-2013, 10:04 AM
  3. Lookup lookup lookup just can't make it work
    By work2live in forum Excel Help
    Replies: 1
    Last Post: 12-08-2012, 11:48 PM
  4. Replies: 5
    Last Post: 09-26-2012, 10:17 AM
  5. Finding highest value in array
    By Rasm in forum Excel Help
    Replies: 15
    Last Post: 06-24-2011, 03:59 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •