Forum Discussion

wazza2040's avatar
wazza2040
Copper Contributor
Nov 16, 2019

Find/return the next value in the column list

Hi,   I have a list of numbers in a column.   A have a number in another cell that has been selected from that list.   Is it possible to find this number in the list (a la vlookup) and then acc...
  • SergeiBaklan's avatar
    Nov 16, 2019

    wazza2040 

    You may find with MATCH() position of the number in the list, and with INDEX() return value from the cell in next position. If, for exmple, your list is in column A and number to search is in cell B1, it could be

    =IFERROR(INDEX(A:A,MATCH(B1,A:A,0)+1),"no such number")

     

Resources