So the left side team labels only apply to the right side score, points, and rank columns? Sounds like they should be separate tables but if it's only for personal use then only you need to understand your system. As for the columns for each team: is each row their match points followed by the opposing team's match points?
Comment has been collapsed.
If body/points is the sum of scores from only won games and assuming your table starts in cell A1, then you'll want to use the following functions:
Team 1 (I2):
=SUM(IF(B2>C2,B2,0),IF(B3>C3,B3,0),IF(B4>C4,B4,0))
Team 2 (I3):
=SUM(IF(D2>E2,D2,0),IF(D3>E3,D3,0),IF(D4>E4,D4,0))
Team 3 (I4):
=SUM(IF(F2>G2,F2,0),IF(F3>G3,F3,0),IF(F4>G4,F4,0))
Comment has been collapsed.
First, do you understand the alphanumeric cell designation and does your table start at A1?
For each team, there are 3 IF statements corresponding to each match they played. The IF function has 3 parameters. The first is the condition: is the team's score greater than their opponent. The second parameter is what the if statement returns if that condition is true, specifically the team's score. The last parameter is what is returned if it is false: a zero so the teams score is not counted since they lost. Then we SUM the 3 IF statements.
Comment has been collapsed.
15 Comments - Last post 11 minutes ago by FritoleXx
386 Comments - Last post 1 hour ago by Bum8ara5h
18 Comments - Last post 1 hour ago by RobbyRatpoison
214 Comments - Last post 2 hours ago by Bentosan
7 Comments - Last post 3 hours ago by lostsoul67
1,736 Comments - Last post 5 hours ago by MBaer
17,148 Comments - Last post 7 hours ago by pivotalHarry
323 Comments - Last post 6 minutes ago by 8urnout
156 Comments - Last post 22 minutes ago by 666lhdkiller
4 Comments - Last post 58 minutes ago by Carenard
165 Comments - Last post 1 hour ago by DudeNukem
127 Comments - Last post 1 hour ago by Yamaraus
120 Comments - Last post 2 hours ago by kudomonster
88 Comments - Last post 3 hours ago by Gozu
Hi, guys.Im here again and want help with excel, right.
I must create football table, thats easy.But how can i create points with fuction if, if i need to count 3 matches.Won only for each team, if u understand me.
Is anyone here, who can help me with it, please?
Thanks :)
tým=team
skóre=score
body=points
pořadí=ranking
Now it looks like this:
Comment has been collapsed.