Dynamic Scoreboard

indygo

Board Regular
Joined
Dec 2, 2013
Messages
126
Office Version
  1. 365
Platform
  1. Windows
So I'm trying to create dynamic scoreboard for Beach Volleyball

ABCDFGHI
1Score Team AScore Team BSet1Set1Set2Set2Set3Set3
221211919212110
3

<tbody>
</tbody>


I want excel to update A2 and B2 automatically based on c2,d2,f2,g2,h2,i2.
I guess it's simple because it has to simply compare if one cell is bigger than other and sum all IFs but I can't find the right formula..<d so="" on="" and="" sum="" it="" but="" i="" can't="" find="" the="" solution...<d="" results="" to="" a2="" b2="" solution.


Please help.</d>
 
Last edited:

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.

Book1
BCDEFGHI
3Score Team AScore Team BSet1Set1Set2Set2Set3Set3
412211919211921
Sheet4
Cell Formulas
RangeFormula
B4=IF(D4>E4,1,0)+IF(F4>G4,1,0)+IF(H4>I4,1,0)
C4=IF(D4)+IF(F4)+IF(H4)
 
Upvote 0
A2=SUM(C2>D2;E2>F2;G2>H2)
B2=SUM(D2>C2;F2>E2;H2>G2)

Row\Col
A​
B​
C​
D​
E​
F​
G​
H​
1​
Score Team AScore Team BSet1Set1Set2Set2Set3Set3
2​
2
1​
21​
19​
19​
21​
21​
10​
 
Upvote 0

Forum statistics

Threads
1,215,004
Messages
6,122,656
Members
449,091
Latest member
peppernaut

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