Sum of numbers in a row of cells AFTER removing highest value cell.

rugbyguy

New Member
Joined
Nov 19, 2018
Messages
3
My wife runs a fitness group which hosts team competitions. The team individuals get points each day for doing things they are supposed to do. They receive negative points for doing things they should NOT do. The values from each day of the week for the bad things are totaled to determine number of negative points added to the score. However, the highest day total is removed from the equation.

Example:
MTWThFSaSu
0002104
1113201

<tbody>
</tbody>





The first row equals 3. The 4 is thrown out and remaining numbers summed.
The second row equals 6. The 3 is thrown out and remaining numbers summed.

Looking for a formula to do this.

Thanks in advance for any help or advice.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Welcome to the board.

Maybe:

ABCDEFGHIJ
1MTWThFSaSuSum
200021043
311132016

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet4

Worksheet Formulas
CellFormula
I2=SUM(A2:G2)-MAX(A2:G2)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,646
Messages
6,126,004
Members
449,279
Latest member
Faraz5023

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