Adding increments over minimum number

BradleyN1

New Member
Joined
May 5, 2017
Messages
25
Office Version
  1. 365
Platform
  1. Windows
Hi

I need help with formula
So I have a spreadsheet, example

A1 heading- Minimum number of tasks
A2 '5'
B1 heading- Actual completed
B2 '6'
C1 heading- Total incl over achievement
C2 6.5

I want a formula which adds 0.5 for every 1 added over the minimum (but the minimum may change in the future so can it be set to A2 rather than a '5' number)

So if 6 completed i'd have a total score of 6.5, 7 it'd be 8
However, is it also possible that IF the actual is only 4 (under the minimum) the total would remain as 4? (with no 0.5 added)

Thanks
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
A​
B​
C​
D​
1​
Min
Comp
2​
1​
6​
3.5​
C2: =MAX(A2, AVERAGE(A2:B2))
3​
7​
3​
7.0​
4​
5​
8​
6.5​
5​
8​
4​
8.0​
6​
9​
7​
9.0​
7​
3​
8​
5.5​
8​
6​
7​
6.5​
9​
3​
6​
4.5​
10​
2​
9​
5.5​
11​
9​
6​
9.0​
12​
6​
1​
6.0​
 
Upvote 0

Forum statistics

Threads
1,215,523
Messages
6,125,318
Members
449,218
Latest member
Excel Master

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