Rank / Position

shark70

Registered User.
Local time
Today, 18:12
Joined
Sep 12, 2004
Messages
13
Hi

I am trying to set up a football predictor database but am having problems with the Position column in the League Tables.

I have the Points, Goal Difference, Goals For etc., OK but I don't know how to show the Position column as the 2nd table below shows by Points then Goal Difference

Can anyone help please?

Team Points Goal Diff Goals For Goals Against
Arsenal 12 11 16 5
Chelsea 12 5 6 1
Bolton 9 3 7 4
Tottenham 8 2 4 2
Middlesbro 7 1 9 8

Position Team Points Goal Diff Goals For Goals Against
1 Arsenal 12 11 16 5
2 Chelsea 12 5 6 1
3 Bolton 9 3 7 4
4 Tottenham 8 2 4 2
5 Middlesbro 7 1 9 8

Thanks
Shark70
 
Make a query based on your table and put descending as the sort order for each field in turn:

Team Points (Desc) Goal Diff (Desc) Goals For (Desc) Goals Against (Desc)

Desc = Descending
 
Hi

I probably didn't explain that properly (I'm new to this)

I already have the query which sorts the Points, GD etc., but I need to add a Position column and I don't know how to do that

Thanks
James
 
Thanks for that - I think it should work

James
 

Users who are viewing this thread

Back
Top Bottom