I have now created my league table with columns as follows:-
Played, Won, Draw, Lost, Goals For, Goals Ag, Diff. My problem now is that
in the won, draw and lost column if a team has not got an entry the query
I hope you have fields to identify the team!?
All of these fields are derived fields, if you store the scores of the
game.
To solve your zero problem, use a calculated field:
ShowWon: NZ([Won])
This will show the value in Won if there is one (won?); if the field
is null it will show a zero.
Alternatively, set the Default property of each of these fields to 0.
John W. Vinson[MVP]