Bowling Secretary Spreadsheet

rlabonte68

New Member
Joined
Nov 12, 2021
Messages
26
Office Version
  1. 2019
Platform
  1. Windows
  2. MacOS
I am trying to create a spreadsheet that will calculate averages and handicap. Bowl 3 games per week with an average each week, so an average after 3 games, 6 games and so forth. Handicap is calculated as such, 90% of 190. You subtract their average from 190 then times .9. I also need the handicap result to round down if decimal is .5 or lower and round up if over .5.
 
I just realized that if the average is 185.2 or 185.8 it has to show 185. It cannot change until it goes to 186. Is that something you can do?
 
Upvote 0

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
So it must always round down, is that correct?
 
Upvote 0
In that case you can use
Excel Formula:
=ROUNDDOWN(AVERAGE(B2:D25),0)
and
Excel Formula:
=ROUNDDOWN((190-G2)*0.9,0)
 
Upvote 0
That's perfect, thanks again for the help!!!! Greatly Appreciated!!
 
Upvote 0
I found one more thing if you don't mind. the handicap can never go below 0. So any average above 190 has to be 0.
 
Upvote 0
Ok, try
Excel Formula:
=MAX(ROUNDDOWN((190-G2)*0.9,0),0)
 
Upvote 0

Forum statistics

Threads
1,215,507
Messages
6,125,212
Members
449,214
Latest member
mr_ordinaryboy

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