Hii,
Request to help me with a formula for counting overs in a cricket match.
If 8 balls are delivered it should show as 1.2 overs.
NO & WIDE should not be counted.
Sample excel file attached.
Regards
Tushar
Hii,
Request to help me with a formula for counting overs in a cricket match.
If 8 balls are delivered it should show as 1.2 overs.
NO & WIDE should not be counted.
Sample excel file attached.
Regards
Tushar
8 balls would be 1.33 overs.
=balls delivered/6
Thanks Jason,
for your reply.
the given equation shows (8/1.33=6.02)
it should show as 1.2.
Can you pls suggest any other formula.
Regards
Tushar
I suggested =balls delivered/6 which = 1.33, you have the formula backwards.
If you think that the result should be 1.2 could you please explain how you get from 8 to 1.2 when an over consists of 6 'legal' balls?
Please note, excel I understand, cricket I do not understand, I based my suggestion on information I found on google.
you can use MOD function.
Where A1 is number of total balls balled, b1 and c1 are no and wide balls.![]()
=CONCATENATE((A1-B1-C1-MOD(A1-B1-C1,6))/6,".",MOD(A1-B1-C1,6))
Ok Jason,
In cricket after 6 'legal' balls it is counted s 1 over, therefore after 8 legal balls it should be 1.2 overs.
Hope this info may help you.
Ok Jason,
In cricket after 6 'legal' balls it is counted s 1 over, therefore after 8 legal balls it should be 1.2 overs.
Hope this info may help you.
So you want Overs and balls expressed as decimal, not an actual decimal value?
For example, no overs and 5 balls would be 0.5
Hii Good Evening,
You can have a look at the attachment, you shall come to know in details.
yes Jason, correct.
16 balls as 2.4 overs
Ok, I can't see how you arrive at 16 from your example though. The numbers in G6 to I13 add up to 26.
Try this one
Formula:
=INT(SUM($G$6:$I$13)/6)+(MOD(SUM($G$6:$I$13),6)/10)
I have checked the file. Actually you are going down. See bowler name, every bowler has six cells in front of it. every cell is representing one ball.
Six balls equal to One over
so when six balls have been bowled the score board should turn to 1, 2 or 3 and so on. Similarly, 21 balls mean 3 complete overs and 3 balls, which should be written as 3.3 instead of 3.5 (which, in cricket means 3 overs and five balls)
I have a clue but that will change after 30 overs.
0.66 = one ball
but if you keep continuing with that the 0.02 difference will make a one ball error after 25 overs where 25 x 0.02 will become 0.5 and it will automatically round offed to 1 ball.
I hope I have defined it in detail
I want Overs and balls expressed as decimal, not an actual decimal value?
For example, no overs and 5 balls would be 0.5, after 0.6 balls it shd show as 1 over, then after one more ball it should show as 1.1, 1.2,1.3,1.4,1.5,2,2.1,2.2, continue. It shd not count "NO & WIDE".
That is exactly what the formula does.
Good Morning Jason
This formula shows the total value of all cells when we enter further. I need to count as one over of 0.6 balls. The result on these ball may be 1 run, 3 runs, 2 runs, 4 runs, OUT, 6 runs. This shd be count as 0.6 ball which should b shown as 1 over. After 0.7 ball it shd show as 1.1 over & continue when it is 1.6 balls (1 over & 0.6 balls) it shd show as 2 overs.
As far as I can see, the formula does what you are asking for.
There is nothing that tells me what the numbers in G6 to I13 mean so I have assumed that they are all balls delivered, a total of 26 balls, or 4.2 overs which is the result that I get from the formula.
If some of those numbers are not balls bowled then you need to tell us what each of the numbers refers to.
Hi , I have attached file regarding ur issue
Hope this will work
Sample sheet (2).xlsx
Hello
I checked the formula =INT(COUNT($G$6:$I$13)/6)+(MOD(COUNT($G$6:$I$13),6)/10)
But it does not count WKT as a ball. What can be added to count WKT as legal ball in the over?
Hi,
Please refer to the comment in #31.
Richard Buttrey
RIP - d. 06/10/2022
If any of the responses have helped then please consider rating them by clicking the small star iconbelow the post.
If I enter 1 in a cell it shows as 01. in overs, but when I enter 2 in other cell it shows as 0.3 in overs , further if I enter 4 in next cell it shows as 1.1 in over cell??
If I enter 1 in a cell it shows as 0.1 in overs, but when I enter 2 in other cell it shows as 0.3 in overs , further if I enter 4 in next cell it shows as 1.1 in over cell??
Hi there. does this give you what you want (15 = 2.3)
=INT(COUNT(B3:D9)/6)&"."&MOD(COUNT(B3:D9),6)
Glenn
None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU
Reply Deleted by Greg M
Last edited by Greg M; 09-15-2015 at 09:42 PM.
Thanks Glenn & Jacob,
Good Morning
Glenn the formula works only for numbers it does not count the ball on which wicket is fallen "WKT".
It should count the cell in which WKT in entered.
OK, then. If this does not give the correct answer, please state what it SHOULD be... for the axample HERE, that you posted in your parallel thread, and which was closed by the Forum Adminand why.
Formula:
=INT((COUNTA(B3:D9)-(COUNTIF(B3:D9,"No")+COUNTIF(B3:D9,"wide")))/6)&"."&MOD((COUNTA(B3:D9)-(COUNTIF(B3:D9,"No")+COUNTIF(B3:D9,"wide"))),6)
Last edited by Glenn Kennedy; 09-16-2015 at 04:19 AM.
Sorry for the inconvenience caused.
The below formula given counts all the cells, but if we enter "WKT" in any cell.
The cell is not counted.
=INT(COUNT(B3:D8)/6)&"."&MOD(COUNT(B3:D8),6)
You can also refer Sheet2 of sample sheet "F2".
In YOUR attached example (sheet 2) there are 11 "valid" balls. Correct? So what is the expected answer: 1.5 or something else?
Formula:
=INT((COUNTA(G6:I13)-(COUNTIF(G6:I13,"No")+COUNTIF(G6:I13,"wide")))/6)&"."&MOD((COUNTA(G6:I13)-(COUNTIF(G6:I13,"No")+COUNTIF(G6:I13,"wide"))),6)
the above gives 1.5
Last edited by Glenn Kennedy; 09-16-2015 at 04:17 AM.
GREAT THANKS TO Mr. JASON & Mr. GLENN FOR SUPPORTING ME & GIVING YOUR VALUABLE TIME.
THE FORMULA IS WORKING NOW.
Glad to have helped! If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. It'd also be appreciated if you were to click the add Reputation button at the foot of any of the posts of those who helped you reach a solution.
Glenn & Jason, I shall b needing support for one more post.
It shall be posted shortly.
See you on that post.
Bye & Regards
Tushar
Hey all, I'm looking to find an overs formula with just 2 different cells. Just say one cell (B3) says 1.4 and the other (B41) says 1.4. I'm looking for it to add up to 3.2 Overs.
I have a formula with this =INT(SUMPRODUCT(F87:F92*10-INT(F87:F92)*4)/6)+MOD(SUMPRODUCT(F87:F92*10-INT(F87:F92)*4),6)/10
So with this formula I can only add more than 2 cells, but I only want to add 2 separate cells with the right out come. For some reason I just can't do it. I'm new to the MOD and INT functions, and I've tried taking out SUMPRODUCT. I only want to use + instead of :
Thanks.
1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
2. If your question is resolved, mark it SOLVED using the thread tools
3. Click on the star if you think someone helped you
Regards
Ford
Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.
If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.
Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
Ali
Enthusiastic self-taught user of MS Excel who's always learning!
Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.
NB: as a Moderator, I never accept friendship requests.
Forum Rules (updated August 2023): please read them here.
Hey Ali, that's ok. Call me stupid but I can not find how to create a new thread. I don't know if it's because I'm new on here or what. I just really need help for my cricket formula. Thanks.
...just click the 'New Posts' option on the menu.
Answer is not- satisfied
.
Please amend the typo in your forum profile (360 should be 365). Thanks.
I am looking for the formula to convert the number of bowled balls into overs.
Unfortunately all the formulas shown do not work.
Who can help me with this, Thank you in advance
Example: bowler bowled 99 balls, how can I convert this into 16.3 overs
Greetz Arthur
@Tuurke64
Administrative Note:
Welcome to the forum.
We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.
Please see Forum Rule #1 about hijacking and start a new thread for your query.
If you are not familiar with how to start a new thread see the FAQ: How to start a new thread
Alan עַם יִשְׂרָאֵל חַי
Change an Ugly Report with Power Query
Database Normalization
Complete Guide to Power Query
Man's Mind Stretched to New Dimensions Never Returns to Its Original Form
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks