Highest value cell and ajacent cells

  • Thread starter Thread starter Gilbo
  • Start date Start date
G

Gilbo

Hi,

What I want to do is find the top 3 highest scores with
(Large(P3:p95,row(A1)) and then get the ajacent values from row (O) and row
(R)
 
Hi,

Use this and drag down

=INDEX($O$3:$O$95,MATCH(LARGE($P$3:$P$95,ROW(A1)),$P$3:$P$95,0))

Mike
 
OOps,

Missed the one for column R

=VLOOKUP(LARGE($P$3:$P$95,ROW(A1)),$P$3:$R$95,3,FALSE)

Once again drag down

Mike
 
Back
Top