+ Reply to Thread
Results 1 to 4 of 4

Help please with Look function of equal or higher value

  1. #1
    Forum Contributor
    Join Date
    04-18-2011
    Location
    Jeddah
    MS-Off Ver
    Excel 2007
    Posts
    362

    Question Help please with Look function of equal or higher value

    Reference to the attached Excel sheet.
    I am looking for a formulas please to insert in cell ‘’D1’’ and ‘’E1’’ that look at the manual value entry in cell ‘’C1’’and compare it the cells rang from A2 to B7 looking for equal or higher value on B2-B7 and the display that value in cell ‘’D1’’ and the related TEMP figure in the same row in cell ‘’E1’’.
    Example:
    If I enter (3405) in cell C1, I would like see please (3424) in cell ‘’D1’’ and (26) in cell ‘’E1’’.
    Attached Files Attached Files

  2. #2
    Forum Contributor
    Join Date
    12-22-2010
    Location
    Rio, Brazil
    MS-Off Ver
    Excel 2010, 2016
    Posts
    209

    Re: Help please with Look function of equal or higher value

    Try

    D1
    =INDEX($B$2:$B$7,MATCH($C$1,$B$2:$B$7,-1))

    E1
    =INDEX($A$2:$A$7,MATCH($C$1,$B$2:$B$7,-1))
    Marcelo Branco

  3. #3
    Forum Contributor
    Join Date
    04-18-2011
    Location
    Jeddah
    MS-Off Ver
    Excel 2007
    Posts
    362

    Re: Help please with Look function of equal or higher value

    Thank you, It is almost what I am looking for; I would like please to have cells D1 and E1 blank when cell C1 is empty.
    The given formulas reflect (3220) in cell D1 and (30) in cell E1 with cell C1 empty!
    Last edited by Khaldon; 08-12-2013 at 02:26 PM.

  4. #4
    Forum Contributor
    Join Date
    12-22-2010
    Location
    Rio, Brazil
    MS-Off Ver
    Excel 2010, 2016
    Posts
    209

    Re: Help please with Look function of equal or higher value

    Quote Originally Posted by Khaldon View Post
    It is almost what I am looking for; I would like please to have cells D1 and E1 blank when cell C1 is empty.
    The given formulas reflect (3220) in cell D1 and (30) in cell E1 with cell C1 empty!
    Try

    D1
    =IF(ISNUMBER($C$1),INDEX($B$2:$B$7,MATCH($C$1,$B$2:$B$7,-1)),"")

    E1
    =IF(ISNUMBER($C$1),INDEX($A$2:$A$7,MATCH($C$1,$B$2:$B$7,-1)),"")

+ 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] Comparing columns for values higher, lower, or equal...
    By D.Lovell in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-18-2013, 07:22 PM
  2. [SOLVED] Does a 'count if higher than other cell' function exist?
    By Apparas in forum Excel General
    Replies: 4
    Last Post: 10-08-2012, 11:06 AM
  3. Replies: 2
    Last Post: 05-31-2010, 03:23 PM
  4. Higher Math function using Sec (z)
    By rkm140 in forum Excel General
    Replies: 2
    Last Post: 11-11-2009, 03:59 PM
  5. Search higher cells function
    By konstantin in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-18-2007, 08:30 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