Sum 2 cells one cell to the left of max and min percentage in a row

Excelaron

Board Regular
Joined
Sep 16, 2011
Messages
211
ABCDEFGHIJKLM14.9%Max
8.9%18763310.8%2367179.7%20860610.8%1569427.5%1497446.1%25827614.9%6.1%Min
Find the cell with the max and min percentages then location cell address one cell to the left (cells L2 and J2) and sum those 2 cells (408020)

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

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
<br />
Book1
OP
114.90%Max
26.10%Min
3
4408020Sum
Sheet1
Cell Formulas
RangeFormula
O1=MAX(A2,C2,E2,G2,I2,K2,M2)
O2=MIN(A2,C2,E2,G2,I2,K2,M2)
O4=INDEX(A2:M2,MATCH(O1,A2:M2,0)-1)+INDEX(A2:M2,MATCH(O2,A2:M2,0)-1)
 
Upvote 0
hello
maybe like this???

=SUM(OFFSET(A2,,MATCH(MAX(IF(A2:M2<=100%,A2:M2)),A2:M2,0)-2),OFFSET(A2,,MATCH(MIN(IF(A2:M2<=100%,A2:M2)),A2:M2,0)-2))

or if you have the formula for min(Q2) and max(Q1)
maybe

=OFFSET(A2,,MATCH(Q1,A2:M2,0)-2)
=OFFSET(A2,,MATCH(Q2,A2:M2,0)-2)
then just combine the two in the the sum function


Edit: opps didn't refresh window.. Sorry for that Alpha.
 
Upvote 0

Forum statistics

Threads
1,214,639
Messages
6,120,679
Members
448,977
Latest member
dbonilla0331

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