Looking for a more efficient method for point scoring

Marvo

Board Regular
Joined
Nov 27, 2023
Messages
179
Office Version
  1. 2021
Platform
  1. Windows
Hi. In the example, I have two teams (Lions & Cheetahs) who are playing each other. The winner is the team with the lowest score from either pair. I've sorted a way to do it but it seems a bit convoluted and I'm sure one of you could show me an simpler way. Many thanks.

Book1
ABCD
1Game 1Game 2Game 3
2Lions A544
3Lions B435
4Cheetahs A336
5Cheetahs B647
6
7Lions Min434
8Cheetahs Min336
9lions001
10Cheetahs111
Sheet1
Cell Formulas
RangeFormula
B7:D7B7=MIN(B2:B3)
B8:D8B8=MIN(B4:B5)
B9B9=IF(B7<B8,1,0)
C9:D9C9=IF(C7<C8,1,0)+B9
B10B10=IF(B8<B7,1,0)
C10:D10C10=IF(C8<C7,1,0)+B10
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try this:

Book1
ABCD
1Game 1Game 2Game 3
2Lions A544
3Lions B435
4Cheetahs A336
5Cheetahs B647
6
7lions001
8Cheetahs111
Sheet1
Cell Formulas
RangeFormula
B7B7=IF(MIN(B2:B3)<MIN(B4:B5),1,0)
C7:D7C7=IF(MIN(C2:C3)<MIN(C4:C5),1,0)+$B7
B8B8=IF(MIN(B2:B3)>MIN(B4:B5),1,0)
C8:D8C8=IF(MIN(C2:C3)>MIN(C4:C5),1,0)+B8
 
Upvote 0
I'd go a bit further. Just 2 formulas:
in B7 and copy to right (Lions):
Excel Formula:
=SUM(A7,MIN(B2:B3)<MIN(B4:B5))
and in B8 and copy right (Cheetahs):
Excel Formula:
=SUM(A8,MIN(B4:B5)<MIN(B2:B3))

The key element is of course comparision of minimas: MIN(B2:B3)<MIN(B4:B5 but then, when it is added to something, excel converts boolean result of comparision (TRUE/FALSE) to 1/0.
So IF function is not needed.
I used SUM function, not just + sign, because SUM treats text in column A as 0. Of course when formula is copied right SUM takes previous result and adds to current one.
 
Upvote 0
Solution

Forum statistics

Threads
1,223,950
Messages
6,175,582
Members
452,653
Latest member
craigje92

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