J
JMB
since your data is sorted, why not use an approximate match Vlookup, it is
much faster. If the table is in A1:B3 and the value to look up is in D1,
then try:
=IF(VLOOKUP(D1,A1:B3,1,TRUE)=D1,VLOOKUP(D1,A1:B3,2,TRUE),"Not Found")
change ranges as needed.
much faster. If the table is in A1:B3 and the value to look up is in D1,
then try:
=IF(VLOOKUP(D1,A1:B3,1,TRUE)=D1,VLOOKUP(D1,A1:B3,2,TRUE),"Not Found")
change ranges as needed.