Win-Loss by League

jfrank1034

New Member
Joined
Jul 13, 2011
Messages
3
So I am trying to track wins, losses and ties and by a certain league/team.

ResultTeam
WATeam A W'sL'sTie
WB
WCTeam B W'sL'sTie
LA
LATeam C W'sL'sTie
WB
LB
WC
LC

<tbody>
</tbody>

So I want it to look at the result in Col A, then correlate to what team it is in Col B, then say in C3 (under A W's) It will count if the win is from team A, if the loss is from team A (D3) and so on. I'm thinking like an =if forumla but haven't tried out a lot yet. Thanks.
 
Last edited:

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Take a look at the COUNTIFS function. It would look something like:

=COUNTIFS(A2:A10,"W",B2:B10,"A")
 
Upvote 0
for Team A's wins
Code:
=COUNTIFS(A:A,"W",B:B,"A")

Just modify letters W and A to suite team and result
 
Upvote 0

Forum statistics

Threads
1,216,098
Messages
6,128,812
Members
449,468
Latest member
AGreen17

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