Tricky "Score Inputting" Problem

DrBJB

New Member
Joined
Sep 29, 2016
Messages
3
Hi people,

I am having trouble establishing the correct formula for inputting scores. 5 players in a team (each seeded from 1-5), each playing best of 5-games. Example of results...

0-3 (1)
3-2 (2)
3-0 (3)
3-2 (4)
3-1 (5)
0
0
0

Overall result in new cell needs to formulate to:
12-8

I have tried various SUMPRODUCT, IF, AND formulas... now my brain hurts :-/
The formula needs to ignore the seeded numbers (the numbers in brackets), and the zero's below where other players have not played.

Any help would be greatly appreciated.

Ben
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Welcome to the Board!

This would be very easy if each number was in different cells. Can it be done that way?
By the way, if you have a long list of them, you can use Text to Columns to separate them out, first using the space as a delimiter, and then a second time using a "-" as the delimiter.
 
Upvote 0
Ok Thanks for the advice... guess I was trying to make it too complicated.

Now related to this with the new columns...

I need the sum of G7:G15 to add 4, if the total is above 8. For example:

G7 | 0
G8 | 3
G9 | 3
G10 | 3
G11 | 3
G12 | 0
G13 | 0
G14 | 0
G15 | 0

G17 | 16

This is what I have so far, but doesn't seem to work...? =SUM(G7:G15,IF(G17," >8"),4)

Thanks again.
 
Upvote 0
Try:
Code:
=SUM(G7:G15) + IF(SUM(G7:G15) > 8,4,0)
 
Upvote 0
Welcome to the MrExcel board!

An answer to your original question in case you are still interested in that:


Excel 2010 32 bit
A
1
20-3 (1)
33-2 (2)
43-0 (3)
53-2 (4)
63-1 (5)
70
80
90
10
1112-8
Scores
Cell Formulas
RangeFormula
A11=SUMPRODUCT(--LEFT(A2:A9,FIND("-",A2:A9&"-")-1))&SUMPRODUCT(-MID(SUBSTITUTE(SUBSTITUTE(A2:A9&"-0 ","-"," ")," ",REPT(" ",10)),10,10))
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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