Thanks for that, but now I am getting an error message saying that I'm not using a GROUP BY function correctly.
Another quick question, since in the Select I am labeling the equation as Score, can I say "ORDER BY Score"?
SELECT PlayerList.PlayerName,PlayerList.PlayerID,
Sum((SQRT((TourneyList.PrizePool/TourneyList.Entrants)/250+1)*LOG10((TourneyList.PrizePool/TourneyList.Entrants)/250+1))*
(LOG10(TourneyList.Entrants/250+1))*
((5*CashList.Cash/TourneyList.PrizePool)+(1-1/TourneyList.PlacesPaid))) AS Score
FROM (CashList INNER JOIN TourneyList ON CashList.TourneyID = TourneyList.TourneyID)
INNER JOIN PlayerList ON CashList.PlayerID = PlayerList.PlayerID
WHERE Year(TourneyList.EventEndDate)='2006'
GROUP BY PlayerList.PlayerID
ORDER BY
Sum((SQRT((TourneyList.PrizePool/TourneyList.Entrants)/250+1)*LOG10((TourneyList.PrizePool/TourneyList.Entrants)/250+1))*
(LOG10(TourneyList.Entrants/250+1))*
((5*CashList.Cash/TourneyList.PrizePool)+(1-1/TourneyList.PlacesPaid)))
DESC;