How to add up Win/Loss/Tie Records in Excel

mgd0011

New Member
Joined
Oct 27, 2015
Messages
1
I have an excel spreadsheet with a column for each game saying "Win" "Loss" or "Tie"

what can i do so that the record automatically updates the W-L-Tie cell when I enter in the result of the game.

Also, I have this for multiple sports so how can I get one cell to add all the total W-L-T records into one big record?
 

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.
make small summary table and use a countif formula for each result, eg..
If the Win/loss/tie is in col "C" you could use
Code:
=countif(C:C,"Win")

and it would update as the results change for "Win"
 
Upvote 0
This formula should work if C3:C38 contains W-L-T data.

=COUNTIF(C3:C38,"Win")&"-"&COUNTIF(C3:C38,"loss")&"-"&COUNTIF(C3:C38,"tie")
 
Upvote 0

Forum statistics

Threads
1,214,940
Messages
6,122,356
Members
449,080
Latest member
Armadillos

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