Hello!
I'm rather new here and I have a question that I can't solve.
I have a table with following fields and data:
Startno A B C D E
101 1 2 1 4 4
102 2 3 2 3 3
103 3 1 3 1 1
104 4 4 4 2 2
A, B, C, D E is ranking set by different people
What I want is to count how many people that have set the Start no as
1
1 or 2
1 or 2 or 3
and so on
ex
Startno 1 1-2 1-3 1-4
101 2 3 3 5
102 0 2 5 5
103 3 3 5 5
104 0 2 2 5
I also want to have the sum of the lowest 3, 4 and all 5 values
ex
Startno 3 4 5
101 4 8 12
102 7 10 13
103 3 6 9
104 8 12 16
I know that this is strange but this is the why that we calculate rsults in our sport.
Hope you can help me
I'm rather new here and I have a question that I can't solve.
I have a table with following fields and data:
Startno A B C D E
101 1 2 1 4 4
102 2 3 2 3 3
103 3 1 3 1 1
104 4 4 4 2 2
A, B, C, D E is ranking set by different people
What I want is to count how many people that have set the Start no as
1
1 or 2
1 or 2 or 3
and so on
ex
Startno 1 1-2 1-3 1-4
101 2 3 3 5
102 0 2 5 5
103 3 3 5 5
104 0 2 2 5
I also want to have the sum of the lowest 3, 4 and all 5 values
ex
Startno 3 4 5
101 4 8 12
102 7 10 13
103 3 6 9
104 8 12 16
I know that this is strange but this is the why that we calculate rsults in our sport.
Hope you can help me