How to count innings pitched?

T

tomcat82

Hi all,

I'm new to the forum.

Could anybody help me to figure out how to count innings pitched i
Excel?

Let's say I'm counting the innings pitched in the A1 column an
individual games are listed in B1:B10.

I've found a couple of tips in the internet, but they don't seem t
work.

To those who are not familiar with how innings pitched in baseball ar
calculated, they go by retired batters so two complete innings and on
retired batter in the third inning amount to 2.1 innings pitched.

So basically I need Excel to roundup to the next rounded number afte
.2

e.g. 1.2 + 1.1 = 3.
 
S

Spencer101

tomcat82;1605409 said:
Hi all,

I'm new to the forum.

Could anybody help me to figure out how to count innings pitched i
Excel?

Let's say I'm counting the innings pitched in the A1 column an
individual games are listed in B1:B10.

I've found a couple of tips in the internet, but they don't seem t
work.

To those who are not familiar with how innings pitched in baseball ar
calculated, they go by retired batters so two complete innings and on
retired batter in the third inning amount to 2.1 innings pitched.

So basically I need Excel to roundup to the next rounded number afte
.2

e.g. 1.2 + 1.1 = 3.0

Hi,

Could you post an example workbook of wht you have so far?
Some manually entered expected results will help too
 
T

tomcat82

Spencer101;1605411 said:
Hi,

Could you post an example workbook of wht you have so far?
Some manually entered expected results will help too.

Can't upload files at work, but let me try to explain it...

In baseball, innings pitched are calculated by the amount of batters th
pitcher has retired in one inning. He needs to retire three (3) batter
to end the inning. So one retired batter amounts 0.1 innings pitched an
3 retired batters to 1.0.

So when a pitcher pitches 6.1 innings in Game 1 and 5.2 innings in Gam
2, he has pitched a total of 12.0 innings in 2 games.

Does that help? Normally 6.1+5.2 = 11.3, but in this case it should b
12.0 and so on…

The result should look like:

---A-------------------- B
1 12.0 (B1+B2)----- 6.1
2-----------------------5.
 
S

Spencer101

tomcat82;1605414 said:
Can't upload files at work, but let me try to explain it...

In baseball, innings pitched are calculated by the amount of batters th
pitcher has retired in one inning. He needs to retire three (3) batter
to end the inning. So one retired batter amounts 0.1 innings pitched an
3 retired batters to 1.0.

So when a pitcher pitches 6.1 innings in Game 1 and 5.2 innings in Gam
2, he has pitched a total of 12.0 innings in 2 games.

Does that help? Normally 6.1+5.2 = 11.3, but in this case it should b
12.0 and so on…

The result should look like:

---A-------------------- B
1 12.0 (B1+B2)----- 6.1
2-----------------------5.2


Does *=ROUNDUP(SUM(B1:B2),0)* in A1 (with 6.1 in B1 and 5.2 in B2) d
the trick
 
B

Bruce Bowler

Does *=ROUNDUP(SUM(B1:B2),0)* in A1 (with 6.1 in B1 and 5.2 in B2) do
the trick?

It might as long as you only add 2 games together... If you add 3 that
are 1.2, 1.2 and 1.2, you approach yields 4, but the answer should be 5.

I'd do something a little more complicated, along the lines of splitting
the screwy numbering scheme that baseball uses into 2 more columns.

B1 = int(a1)
C1 = (a1-b1)*10

B{n} = sum(b1:b{n-1})
C{n} = int(sum(C1:C{n-1})/3)
D{n} = mod(sum(c1:c{n-1}),3)/10

innings pitched = B{n}+C{n}+D{n}

Can probably be simplified a bit, but it's a start.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top