Lookup the 3rd Value

  • Thread starter Thread starter Faraz A. Qureshi
  • Start date Start date
F

Faraz A. Qureshi

Any formula for an Index/Lookup formula to return a specific entry?

For instance, I want the corresponding entry in column B against the third
or fourth entry in Column A representing the entry "Customer A"?

Thanx in advance.
 
C1 = 'Customer A'
C2 = nth lookup 1,2,3 etc;

Try the below array formula
=INDEX(B1:B50,SMALL(IF(A1:A50=C1,ROW(A1:A50)),C2))

If this post helps click Yes
 
Back
Top