I am creating an excel file in order to track the history of our football team. The excel sheet has the name of our opponents as well as the score for our team and the score for the opponent. I want to have another column that has a formula to calculate, based on the score, the result with a "W", "L" or "T".
The opponent is in column "A", our team score is in column "B" and the opponent score is in column "C". I'd like for the result formula to be in column "D".
Below is the formula that I have working to get wins and losses.
=IF(B3>C3,"W","L")
I tried the following formula to also track if the game ended in a tie but I'm having trouble with it.
=IF(B3>C3,"W","L",IF(B3=C3,"T"))
Is there a formula to track all three result possibilities? Thanks for your help!
The opponent is in column "A", our team score is in column "B" and the opponent score is in column "C". I'd like for the result formula to be in column "D".
Below is the formula that I have working to get wins and losses.
=IF(B3>C3,"W","L")
I tried the following formula to also track if the game ended in a tie but I'm having trouble with it.
=IF(B3>C3,"W","L",IF(B3=C3,"T"))
Is there a formula to track all three result possibilities? Thanks for your help!