Sounds like a simple VLOOKUP is what you're looking for. Plug this into cell B11 and fill down:
Excel Formula:
=VLOOKUP(A11,$A$2:$C$10, 2, FALSE)
And plug this into cell C11 and fill down
Excel Formula:
=VLOOKUP(A11,$A$2:$C$10, 3, FALSE)
Another option would be use INDEX & MATCH together:
Cell B11 & fill down:
Excel Formula:
=INDEX($B$2:$B$10,MATCH(A8,$A$2:$A$10,0))
Cell C11 & fill down:
Excel Formula:
=INDEX($C$2:$C$10,MATCH(A8,$A$2:$A$10,0))