Forum Discussion
wazza2040
Nov 16, 2019Copper Contributor
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...
- Nov 16, 2019
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")
wazza2040
Nov 17, 2019Copper Contributor
Many thank.
SergeiBaklan
Nov 17, 2019Diamond Contributor
wazza2040 , you are welcome