Sports Standings Excel Question

draper0521

New Member
Joined
Nov 27, 2023
Messages
2
Office Version
  1. 2021
Platform
  1. MacOS
Thank you for your time. I keep baseball standings for a group. After each season, wins, losses, runs scored, runs allowed and winning percentage are all added into a spreadsheet, in order based on the standings from that season.

We have multiple seasons. I'm wondering if there is a formula to search for team name and add each team's wins, loss, etc to a to show the overall standings from the entire worksheet without doing it manually. I hope that makes sense. Thanks
Screenshot 2023-11-27 at 1.16.10 PM (1).png
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
If you put all seasons below each other like you did with 2023 and 2024, then this can be done with a SUMIFS formula.

For instance, in cell W7 you would want the sum of all fields in column C where the name in column B is the same as the name in L7.

The formule for W7 then becomes:
Excel Formula:
=sumifs(C:C,$B:$B,$L7)

This formula can then be copied into every "overall standing" field.
You are missing column "GB" in your overal standings. Therefor you will have to slightly modify the formula for columns P and Q.

The team names do have to be unique though! Otherwise another identifier would have to be added, probably based on division.
 
Upvote 0
Solution
If you put all seasons below each other like you did with 2023 and 2024, then this can be done with a SUMIFS formula.

For instance, in cell W7 you would want the sum of all fields in column C where the name in column B is the same as the name in L7.

The formule for W7 then becomes:
Excel Formula:
=sumifs(C:C,$B:$B,$L7)

This formula can then be copied into every "overall standing" field.
You are missing column "GB" in your overal standings. Therefor you will have to slightly modify the formula for columns P and Q.

The team names do have to be unique though! Otherwise another identifier would have to be added, probably based on division.
Thank you very much!
 
Upvote 0

Forum statistics

Threads
1,215,361
Messages
6,124,497
Members
449,166
Latest member
hokjock

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top