jimrward
Well-known Member
- Joined
- Feb 24, 2003
- Messages
- 1,895
- Office Version
- 2021
- 2019
- 2016
- 2013
- 2011
- 2010
- 2007
- 2003 or older
- Platform
- Windows
This is part 3 of my quest to learn how to use power tools
I have called this generically Tournament results so that it might be useful in other scenarios
Ok here we go Power Tools gurus
Over a month a competitor can complete up to 3 rounds for a competition which has a few categories for the results, overall, Ladies, Vets, Juniors, Junior Ladies
The data is a rolling log by date, I can group by name and sum the scores for a total to give me Name and total, but I want to include the round scores on each line as opposed to vertically
Here is some sample raw data, the set is incomplete butr hopefully enough data for a solution
This is what I would like to achieve, overall might be easier as it doesnt need the category logic, I havent decided on sorting yet when there are rounds not completed, looking for the method first
And now by a single category, I have listed all sections but the logic will be the same with an edit for the category
Finally using 2 categories for Junior Ladies
I have called this generically Tournament results so that it might be useful in other scenarios
Ok here we go Power Tools gurus
Over a month a competitor can complete up to 3 rounds for a competition which has a few categories for the results, overall, Ladies, Vets, Juniors, Junior Ladies
The data is a rolling log by date, I can group by name and sum the scores for a total to give me Name and total, but I want to include the round scores on each line as opposed to vertically
Here is some sample raw data, the set is incomplete butr hopefully enough data for a solution
Book1 | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | Date | Name | Cat1 | Cat2 | Round | Score | ||
2 | 01/04/2023 | Jim | Vet | 1 | 5 | |||
3 | 01/04/2023 | Bill | Vet | 1 | 7 | |||
4 | 01/04/2023 | Bob | 1 | 4 | ||||
5 | 01/04/2023 | Fred | Junior | 1 | 8 | |||
6 | 02/04/2023 | Fred | Junior | 2 | 8 | |||
7 | 03/04/2023 | Jim | 2 | 6 | ||||
8 | 03/04/2023 | Alan | 1 | 11 | ||||
9 | 03/04/2023 | Debs | Ladies | 1 | 11 | |||
10 | 04/04/2023 | Kirsty | Ladies | Junior | 1 | 12 | ||
11 | 04/04/2023 | Kim | Ladies | 1 | 5 | |||
12 | 04/04/2023 | Jim | Vet | 3 | 2 | |||
13 | 04/04/2023 | Bob | 2 | 7 | ||||
14 | 04/04/2023 | Bill | Vet | 2 | 10 | |||
Sheet1 |
This is what I would like to achieve, overall might be easier as it doesnt need the category logic, I havent decided on sorting yet when there are rounds not completed, looking for the method first
Book1 | ||||||||
---|---|---|---|---|---|---|---|---|
H | I | J | K | L | M | |||
1 | Overall | Name | R1 | R2 | R3 | Total | ||
2 | Jim | 5 | 6 | 2 | 13 | |||
3 | Bill | 7 | 10 | 17 | ||||
4 | Bob | 4 | 7 | 11 | ||||
5 | Fred | 8 | 8 | 16 | ||||
6 | Alan | 11 | 11 | |||||
7 | Debs | 11 | 11 | |||||
8 | Kirsty | 12 | 12 | |||||
9 | Kim | 5 | 5 | |||||
Sheet1 |
And now by a single category, I have listed all sections but the logic will be the same with an edit for the category
Book1 | ||||||||
---|---|---|---|---|---|---|---|---|
H | I | J | K | L | M | |||
11 | Cat | |||||||
12 | Vet | Name | R1 | R2 | R3 | Total | ||
13 | Jim | 5 | 6 | 2 | 13 | |||
14 | Bill | 7 | 10 | 17 | ||||
15 | ||||||||
16 | Cat | |||||||
17 | Ladies | Name | R1 | R2 | R3 | Total | ||
18 | Debs | 11 | 11 | |||||
19 | Kirsty | 12 | 12 | |||||
20 | Kim | 5 | 5 | |||||
21 | ||||||||
22 | Cat | |||||||
23 | Junior | Name | R1 | R2 | R3 | Total | ||
24 | Fred | 8 | 8 | 16 | ||||
25 | Kirsty | 12 | 12 | |||||
Sheet1 |
Finally using 2 categories for Junior Ladies
Book1 | ||||||||
---|---|---|---|---|---|---|---|---|
H | I | J | K | L | M | |||
27 | Cat | |||||||
28 | Junior | Name | R1 | R2 | R3 | Total | ||
29 | Ladies | Kirsty | 12 | 12 | ||||
Sheet1 |