Hopefully your table contains a PrimaryKey:
DELETE FROM yourTable
WHERE [PK field] Not In (SELECT Max([PK field]) As x
FROM yourTable GROUP BY LName,FName);
Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886