Formula help

jays35

New Member
Joined
Oct 11, 2016
Messages
10
I need to take scores from 6 candidates that their scores or totaled in a row. I need to find the 'points less than the highest score' in that array and also I need to find a 'percentage less than the highest score'. I have attached a clip of the sheet that I am working on a thanks in advance for the help.

Dave

total points25 total score77.58.77.15.27.5
POINTS LESS THAN HIGHEST000000
% LESS THAN HIGH SCORE0.0%0.0%0.0%0.0%0.0%0.0%

<tbody>
</tbody><colgroup><col><col><col><col><col><col span="2"><col><col span="2"><col></colgroup>
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
So what would your results be given that data?
Surely not all zeroes?
 
Last edited:
Upvote 0
Pasting that table to Excel....
For Cell F2
Code:
=MAX($F$1:$K$1)-F1
fill right

For Cell F3
Code:
=F2/MAX(F1:$K$1)
 
Upvote 0
You can edit and expand this to address your challenge.
It would be much better to post data that we can use in Excel.



Excel 2010
ABCDEFGHI
2Scores77.58.77.15.27.5
3Max8.7
4Total43% less Max19.5%13.8%0.0%18.4%40.2%13.8%
5Total - Max34.3
2e
Cell Formulas
RangeFormula
D4=($B$3-D2)/$B$3
E4=($B$3-E2)/$B$3
F4=($B$3-F2)/$B$3
G4=($B$3-G2)/$B$3
H4=($B$3-H2)/$B$3
I4=($B$3-I2)/$B$3
B3=MAX(D2:I2)
B4=SUM(D2:I2)
B5=B4-B3
 
Upvote 0
That is where I need the help as to the formula that would be in those cells. The total scores are the top rows and the formulas would reside where the 0 and 0.0% are.
 
Upvote 0

Forum statistics

Threads
1,215,003
Messages
6,122,655
Members
449,091
Latest member
peppernaut

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