Calculating W/L - multiple tracks

Hutchcove

New Member
Joined
Feb 22, 2015
Messages
9
Hi, all,

Trying to find a way to explain what I need so bear with me.

My daughter and I have setup 2 marble tracks. We have 5 sets of colors marbles and we want to have mini tournaments (seasons) racing the 5 different colors over 2 tracks.

It is very easy to calculate the W/L as a total using the SUMIF command but I would like some additional statistics (as I enjoy stats in a small way).

If I have 4 columns (A1=track1, B1=Team, C1=W, D1=L (Either a W or L)
vs (A2=track2, B2=Team, C2=W, D2=L (Either a W or L)

I run the entire season, down the rows, with that method. Unsure on how to pick up the Wins for any given team on Track 1 & then on Track 2. After which I would just total them to have the overall standings. I guess the same goes for Losses on each track for each team.

If you need more, please let me know and I will see what I can do to clarify. Thank you all.

Hutchcove & daughter
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Can you provide an example of what the sheet might look like for a season (using made up data).
 
Upvote 0
I think you need to look at the COUNTIFS() function
=COUNTIFS(team-range, team1, track range, track1)
etc
You could reference the team and track, instead of hard coding them
 
Upvote 0
TeamWL%Track #TeamWL
Green620.7501Green1
Orange440.5002Yellow1
Red440.5001Orange1
Yellow350.3752Purple1
Purple350.3751Red1
2Green1
Track 11Yellow1
TeamWL%2Orange1
Orange1Purple1
Green2Red1
Red1Green1
Yellow2Purple1
Purple1Yellow1
2Red1
Track 21Orange1
TeamWL%2Green1
Orange1Red1
Green2Orange1
Red1Purple1
Yellow2Yellow1
Purple1Yellow1
2Green1
1Purple1
2Orange1
1Green1
2Red1
1Orange1
2Yellow1
1Red1
2Purple1
1Purple1
2Green1
1Red1
2Yellow1
1Green1
2Orange1
1Orange1
2Red1
1Yellow1
2Purple1

<colgroup><col width="64" span="6" style="width:48pt"> <col width="64" style="width:48pt"> <col width="64" style="width:48pt"> <col width="64" span="2" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
You cannot upload files here :(

See if you can adapt this...
H​
I​
J​
K​
L​
1​
nameTrackNameTrackCount
2​
aa
1​
aa
1​
2​
3​
bb
2​
4​
cc
3​
5​
aa
4​
6​
bb
1​
7​
cc
2​
8​
aa
3​
9​
bb
4​
10​
cc
1​
11​
aa
1​
J and K would be the criteria
L2=COUNTIFS($H$2:$H$11,J2,$I$2:$I$11,K2)
 
Upvote 0
Track nameTeamWLDNF
Track AGreen1
Track BRed1
Track AOrange1
Track BYellow1

<tbody>
</tbody>
I would like for my standings to shows W/L for each team for any given Track.

That way I take the total from Track A & Track B to have the full standings (regardless of track)
 
Upvote 0
Track nameTeamW/LDNF
Track AGreenW
Track BRedL
Track AOrangeL
Track BYellowW


<tbody>
</tbody>
What formula would I need to benifit from this change?

Thanks
 
Upvote 0
Maybe this?
N​
O​
P​
Q​
R​
S​
1​
Track nameTeamW/LDNFTrackTrack A
2​
Track AGreenWTeamGreen
3​
Track BRedLW/LW
4​
Track AOrangeLCount
1​
5​
Track BYellowW
S4=COUNTIFS($N$2:$N$5,S1,$O$2:$O$5,S2,$P$2:$P$5,S3)
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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