Calculating points based on time

gruntingmonkey

Active Member
Joined
Mar 6, 2008
Messages
434
Office Version
  1. 365
Platform
  1. Windows
I'm trying to get a formula that calculates points up to a maximum of 50 depending on how many minutes a result is. IE

Cell A2 has an actual time in it
Cell B2 has a guess time in it
Cell C2 has a calculation which shows as points (spot on, 50 points, 1 minute under or over, 49 points, 2 minutes, under or over 48 points.. down to 0)


I have come up with the following which works for times under an hour but does not work if its over an hour
=IF(SUM(50-SUM(1440*(A2-B2)))<0,0,SUM(50-SUM(1440*(A2-B2))))

I'm guessing I can use the min/max function when I have the right formula!

Can anyone help?
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
This is great - Thanks for that. Just wondering if you know a calculation for weight thats similar.IE

Actual and guess weight - last cell has a calculation which shows as points (spot on, 50 points, .1kg under or over, 40 points, .2kg, under or over 30 points.. down to 0)



Orrrrr, even better if you can do it in pounds and ounzes.
 
Last edited:
Upvote 0
This is great - Thanks for that. Just wondering if you know a calculation for weight thats similar.IE

Actual and guess weight - last cell has a calculation which shows as points (spot on, 50 points, .1kg under or over, 40 points, .2kg, under or over 30 points.. down to 0)

similar

=MAX(0, 50-ABS(A2-B2))
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,465
Members
448,965
Latest member
grijken

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