Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default how can i make 0.6 = 1 in excel

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
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 70
Default how can i make 0.6 = 1 in excel

=roundup(total overs,0)

"Barfly" wrote:

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

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 70
Default how can i make 0.6 = 1 in excel

ooops sorry wrong answer !

"claude jerry" wrote:

=roundup(total overs,0)

"Barfly" wrote:

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

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 341
Default how can i make 0.6 = 1 in excel

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

--
Allllen


"Barfly" wrote:

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

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 341
Default how can i make 0.6 = 1 in excel

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
--
Allllen


"Allllen" wrote:

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

--
Allllen


"Barfly" wrote:

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



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 70
Default how can i make 0.6 = 1 in excel

Assuming your sum total is in G9
=IF(MOD(G9,1)0.5,INT(G9)+1+MOD(G9,1)-0.6,G9)

"claude jerry" wrote:

ooops sorry wrong answer !

"claude jerry" wrote:

=roundup(total overs,0)

"Barfly" wrote:

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

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default how can i make 0.6 = 1 in excel

Excellent, that's just what i was looking for

Thanks

"Allllen" wrote:

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
--
Allllen


"Allllen" wrote:

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

--
Allllen


"Barfly" wrote:

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

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Make table query will work in datasheet view but will not make tab WildlyHarry Excel Discussion (Misc queries) 0 August 28th 07 03:06 PM
How do I make make comment format default? delta_charm Excel Discussion (Misc queries) 1 July 8th 06 10:59 PM
make macros usable! make instructions in plain english !!!! Brainless_in_Boston Excel Worksheet Functions 0 March 2nd 06 03:27 PM
Excel templates. Wanna make excel look like regular blue lined pap havocdragon Excel Discussion (Misc queries) 0 March 3rd 05 09:53 PM
how do I make make my hyperlinks show the email address they are . Dustin Excel Discussion (Misc queries) 0 January 13th 05 01:39 AM


All times are GMT +1. The time now is 08:12 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"