+ Reply to Thread
Results 1 to 10 of 10

Get next value from a column

  1. #1
    Registered User
    Join Date
    05-05-2015
    Location
    Mumbai
    MS-Off Ver
    2010
    Posts
    1

    Get next value from a column

    Hi,

    Please help me with the excel problem. In B1 the user will enter any column name from Sheet2 then B5 will display the next value in Column B (the column entered in B1) which is greater then the value in B3 in case there is no value greater then B3 then it will display the last value in the column.

    Sample sheet is attached.

    Thanks in advance.
    Attached Files Attached Files

  2. #2
    Forum Guru sktneer's Avatar
    Join Date
    04-30-2011
    Location
    Kanpur, India
    MS-Off Ver
    Office 365
    Posts
    9,655

    Re: Get next value from a column

    Hi Swapnil,
    Welcome to the forum.

    You may try this Array Formula which requires confirmation with Ctrl+Shift+Enter instead of Enter alone.

    On Sheet1
    In B5
    Please Login or Register  to view this content.

    ***********************
    Remember that an Array Formula is confirmed by pressing CTRL+SHIFT+ENTER to activate the array, not just ENTER. You will know the array is active when you see curly braces { } appear around your formula. If you do not CTRL+SHIFT+ENTER you will get an error or a clearly incorrect answer. Press F2 on that cell and try again.
    Regards
    sktneer


    Treat people the way you want to be treated. Talk to people the way you want to be talked to.
    Respect is earned NOT given.

  3. #3
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Get next value from a column

    In B5 Cell

    =IFERROR(SMALL(INDEX(Sheet2!$A$2:$C$6,,MATCH(B1,Sheet2!$A$1:$C$1,0)),COUNTIF(INDEX(Sheet2!$A$2:$C$6,,MATCH(B1,Sheet2!$A$1:$C$1,0)),"<="&B3)+1),B3&" Is the Higher Value")


    If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
    Mark your thread as Solved


    If the suggestion helps you, then Click *below to Add Reputation

  4. #4
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Get next value from a column

    Or

    =AGGREGATE(15,6,Sheet2!A2:C6/((Sheet2!A1:C1=B1)*(Sheet2!A2:C6>B3)),1)
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  5. #5
    Banned User!
    Join Date
    10-29-2012
    Location
    Europe
    MS-Off Ver
    2013, 2016
    Posts
    318

    Re: Get next value from a column

    @ : ) Sixthsense : ) ,

    Your formula does not comply with the last condition of OP
    in case there is no value greater then B3 then it will display the last value in the column.
    @AlKey,

    If the selected column is C and the value is 6, your formula crashes.

  6. #6
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Get next value from a column

    Quote Originally Posted by Indi_Ra View Post
    @ : ) Sixthsense : ) ,

    Your formula does not comply with the last condition of OP


    @AlKey,

    If the selected column is C and the value is 6, your formula crashes.
    Your observation is wrong. If there is no value greater than 6 in column C the formula would displace error. If desired, an error trapping can be used mask it.

  7. #7
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,940

    Re: Get next value from a column

    =IFERROR(IFERROR(INDEX(INDEX(Sheet2!$A$2:$C$6,,MATCH(B$1,Sheet2!$A$1:$C$1,0)),MATCH(TRUE,INDEX(INDEX(Sheet2!$A$2:$C$6,,MATCH(B$1,Sheet2!$A$1:$C$1,0))>$B$3,0),0)),LOOKUP(10^10,INDEX(Sheet2!$A$2:$C$6,,MATCH(B$1,Sheet2!$A$1:$C$1,0)))),"")
    Please Login or Register  to view this content.
    Try this
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  8. #8
    Registered User
    Join Date
    03-12-2015
    Location
    UK
    MS-Off Ver
    2013 & 2010
    Posts
    27

    Re: Get next value from a column

    Formula: copy to clipboard
    Please Login or Register  to view this content.


    edit: just seen nflsales formula. It returns the same results as this formula, but is more efficient so I would use nflsales formula.
    Last edited by timiop2011; 05-05-2015 at 09:21 AM.

  9. #9
    Banned User!
    Join Date
    10-29-2012
    Location
    Europe
    MS-Off Ver
    2013, 2016
    Posts
    318

    Re: Get next value from a column

    Quote Originally Posted by AlKey View Post
    Your observation is wrong. If there is no value greater than 6 in column C the formula would displace error. If desired, an error trapping can be used mask it.
    It is not necessary error trapping, it should display last value in that column.

    xSWAPNILx
    ....in case there is no value greater then B3 then it will display the last value in the column.

  10. #10
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Get next value from a column

    Quote Originally Posted by Indi_Ra View Post
    It is not necessary error trapping, it should display last value in that column.
    My sincere apologies, I simply did't read the whole thing.

    Corrected version

    =IFERROR(AGGREGATE(15,6,Sheet2!A2:C6/((Sheet2!A1:C1=B1)*(Sheet2!A2:C6>B3)),1),LOOKUP(10^308,INDEX(Sheet2!A2:C6,0,MATCH(B1,Sheet2!A1:C1,0))))
    Last edited by AlKey; 05-05-2015 at 09:44 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. Compare multiple columns (column A,column B,Column C) and return value (Column D)
    By john008 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-21-2015, 08:24 AM
  2. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-09-2012, 08:56 AM
  3. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel General
    Replies: 5
    Last Post: 04-06-2012, 12:02 PM
  4. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 04-06-2012, 11:19 AM
  5. [SOLVED] Delete Cell Numbers of Column B From Column A (Column B Small and Column A too big)
    By it_electronics2000 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-06-2012, 11:13 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