Bodster,
You can use VLOOKUP. It looks down one column, so in sheet 2 you'll need to make an
additional column with the surname and forename concatenated. In this case, it could go in
column A, which you will have inserted, causing all the columns to move over. It could also
go in column C (also inserted). In any case, it must be left of the columns which the
VLOOKUPs in sheet will be retrieving data.
= B2 & " " & C2
Now in Sheet 1, in whatever column you want extracted data from sheet 2 to appear, put
=VLOOKUP(A2 & " " & B2, Sheet2!A2:E21,4,FALSE)
This is for row 2 of sheet 1, and retrieves the associated data from column 4 of sheet 2.
Change as necessary.

Signature
Regards from Virginia Beach,
Earl Kiosterud
www.smokeylake.com
Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
> This is what I want to do,
>
[quoted text clipped - 15 lines]
>
> Bodster