Aug 11 2024 10:00 AM - edited Aug 11 2024 10:01 AM
I am trying to create a summary score sheet to find a High point winner. The program has an Entries sheet where names are entered and marked as to which 'classes' they are participating in. (there are 12 classes) Each class has it's own sheet. The competitors receive a set of scores for each class which is totaled and sorted High to Low. Of a total of 30 competitors maybe 10 are in one class, they can enter several classes.
I want to create a summary of their scores. A summary page uses this formula (=IF(Entries!$A4<>"",Entries!B4,"") to copy their names to the summary. The problem is for 'Class A' when the scores are tallied and sorted, the total does not match the competitor input line anymore. I can total a score if I chose a specific cell (='#1 (Saturday)'!T6) but it does not relate to that competitor... Is there a way to sort that out?
Aug 11 2024 09:38 PM
SolutionTo create a summary sheet that correctly tallies the scores for each competitor across multiple class sheets, even after sorting, you'll need to match the names from the Entries sheet with the names on each class sheet. This can be done using the INDEX and MATCH functions, which will allow you to retrieve the score based on the competitor's name, even if the rows have been sorted.
Here's a step-by-step guide:
1. Structure of the Sheets:
2. Using INDEX and MATCH to Retrieve Scores:
Let's assume:
You want to retrieve the score for a competitor in Class A.
Formula to use in the Summary Sheet:
=IFERROR(INDEX('Class A'!$B$2:$B$30, MATCH($A4, 'Class A'!$A$2:$A$30, 0)), 0)
3. Summing Scores Across Classes:
If you want to sum scores from multiple classes (e.g., Class A, Class B, Class C), you can extend the formula like this:
Formula to use in the Summary Sheet:
=IFERROR(INDEX('Class A'!$B$2:$B$30, MATCH($A4, 'Class A'!$A$2:$A$30, 0)), 0) +
IFERROR(INDEX('Class B'!$B$2:$B$30, MATCH($A4, 'Class B'!$A$2:$A$30, 0)), 0) +
IFERROR(INDEX('Class C'!$B$2:$B$30, MATCH($A4, 'Class C'!$A$2:$A$30, 0)), 0)
This formula will give you the total score for the competitor in cell A4 across all specified classes.
4. Automating for All Competitors:
5. Final Touches:
This method ensures that your summary sheet accurately reflects the scores for each competitor, even if the rows are sorted differently in each class sheet. The text, steps and formulas were edited with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.
Aug 12 2024 08:12 AM
Aug 11 2024 09:38 PM
SolutionTo create a summary sheet that correctly tallies the scores for each competitor across multiple class sheets, even after sorting, you'll need to match the names from the Entries sheet with the names on each class sheet. This can be done using the INDEX and MATCH functions, which will allow you to retrieve the score based on the competitor's name, even if the rows have been sorted.
Here's a step-by-step guide:
1. Structure of the Sheets:
2. Using INDEX and MATCH to Retrieve Scores:
Let's assume:
You want to retrieve the score for a competitor in Class A.
Formula to use in the Summary Sheet:
=IFERROR(INDEX('Class A'!$B$2:$B$30, MATCH($A4, 'Class A'!$A$2:$A$30, 0)), 0)
3. Summing Scores Across Classes:
If you want to sum scores from multiple classes (e.g., Class A, Class B, Class C), you can extend the formula like this:
Formula to use in the Summary Sheet:
=IFERROR(INDEX('Class A'!$B$2:$B$30, MATCH($A4, 'Class A'!$A$2:$A$30, 0)), 0) +
IFERROR(INDEX('Class B'!$B$2:$B$30, MATCH($A4, 'Class B'!$A$2:$A$30, 0)), 0) +
IFERROR(INDEX('Class C'!$B$2:$B$30, MATCH($A4, 'Class C'!$A$2:$A$30, 0)), 0)
This formula will give you the total score for the competitor in cell A4 across all specified classes.
4. Automating for All Competitors:
5. Final Touches:
This method ensures that your summary sheet accurately reflects the scores for each competitor, even if the rows are sorted differently in each class sheet. The text, steps and formulas were edited with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.