And the winner is...

tylertyler33

New Member
Joined
May 14, 2008
Messages
13
Once the cells are filled for columns "1,2,3,4,5 and 6" I'd like a check mark (or any selected illustration) to automatically appear under the "Winner" column for the team with the most points. In the example below Team A defeats Team B 4.5-1.5. All cells are filled so can we get a check mark to appear. Thank you.


123456Winner
Team A100.5111
Team B010.5000

<tbody>
</tbody>
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Excel 2010
ABCDEFGH
1123456Winner
2Team A100.5111X
3Team B010.5000

<colgroup><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
Sheet6

Worksheet Formulas
CellFormula
H2=IF(COUNT(B2:G3)=12,IF(SUM(B2:G2)>SUM(B3:G3),"X",""),"")
H3=IF(COUNT(B2:G3)=12,IF(SUM(B2:G2)<SUM(B3:G3),"X",""),"")

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
It's possible Team B can be the winner as well. Currently, the formula doesn't support that. It works like a charm if Team A is the winner.
 
Upvote 0
The formula for H3 did not post right. remove the space around the <
Code:
=IF(COUNT(B2:G3)=12,IF(SUM(B2:G2) < SUM(B3:G3),"X",""),"")
 
Upvote 0

Forum statistics

Threads
1,215,417
Messages
6,124,789
Members
449,188
Latest member
Hoffk036

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