SELECT UNIBOND.ATFULL AS Team, UNIBOND.HOME_SCORE AS PtsAginst, UNIBOND.AWAY_SCORE AS PtsFor, IIf([Home_Score]<[Away_Score],"W",IIf([Home_Score]>[Away_Score],"L","T"

) AS WLT, UNIBOND.GDATE
FROM UNIBOND
;
"Unibond" is the (single) source recordset.
"Select" is required
"From" is required
";" is required
Everthing between Select and From is the "Field" list, ALL of which are aliased (the "AS" keword).
The one 'complication' here is the use of the nested conditional. If this is difficult for you, just remove it completly (at least from your thoughts).
MichaelRed
m.red@att.net
There is never time to do it right but there is always time to do it over