how can i make 0.6 = 1 in excel

B

Barfly

I'm trying to produce averages for my local cricket team (UK) using Excel. On
occasions, a bowler does not complete an 'Over' so may end up with an entry
of 7.3. On anther occasion, he has an entry of 6.4. Now, in normal addition
7.3 + 6.4 = 13.7, however in cricket there are only 6 balls in an over, so
the total would be 14.1.

Does anyone have ideas on a formular for this type of equation?

Thanks

Barfly
 
A

Allllen

Overs DecOvers
7.3 7.5
6.4 6.6667

formula in B2 is
=ROUNDDOWN(A2,0)+MOD(A2,1)*10/6

the rounddown gets the number of completed overs
the mod gets the number of balls, which I then multiply by 10/6 to translate
into normal decimals
 
A

Allllen

I should have gone a step further and shown you how to get back to overs and
balls again:

A B
1 Overs DecOvers
2 7.3 7.5
3 6.4 6.667
4
5 14.1 14.167

formula in B2 is =ROUNDDOWN(A2,0)+MOD(A2,1)*10/6
formula in B5 is =SUM(B2:B3)
formula in A5 is = =ROUNDDOWN(B5,0)+MOD(B5,1)*6/10
 
C

claude jerry

Assuming your sum total is in G9
=IF(MOD(G9,1)>0.5,INT(G9)+1+MOD(G9,1)-0.6,G9)
 
Joined
Mar 25, 2019
Messages
1
Reaction score
0
Balls to overs say in cell A2
=TRUNC(A2/6,0)+MOD(A2,6)/10

Overs to Balls in cell A3
=INT(A3)*6+SUM(A3-INT(A3))*10
 

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