Formula to Calculate uplift based on MAX Value

Bravo33

Board Regular
Joined
Jan 10, 2008
Messages
76
I have 4 columns with costs for 2015,2016, 2017 & MAX Value
I want to apply and % uplift to the MAX value column but this could be in any of the 3 columns.
The % Uplift varies dependent upon what year the MAX value is in.

Col 1; Col 2; Col 3; Col 4
2015; 2016; 2017; Max Value
8.07%;6.65%;3.95%;
£500; £650; £525; =£650+6.65%

Many thanks,
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi,

If col1 = A, col2 = B , etc.
And row starts at 1:

=MAX(A3:B3)*(1+OFFSET(A2,0,MATCH(MAX(A3:B3),A3:B3,0)-1))
 
Last edited:
Upvote 0
Heres one way if the max is always distinct:

=SUMPRODUCT(--(A3:C3=MAX(A3:C3)),1+A2:C2,A3:C3)

Or another if you want the first max if it isnt distinct:

=MAX(A3:C3)*(1+INDEX(A2:C2,MATCH(MAX(A3:C3),A3:C3,0)))

Or maybe this if you want the last max if it isnt distinct:

=LOOKUP(2,1/(A3:C3=MAX(A3:C3)),(1+A2:C2)*A3:C3)
 
Upvote 0
Thanks All, greatly appreciated. Steve's, "=MAX(A3:B3)*(1+OFFSET(A2,0,MATCH(MAX(A3:B3),A3:B3,0)-1))"
Worked a treat!!
 
Upvote 0

Forum statistics

Threads
1,215,245
Messages
6,123,842
Members
449,129
Latest member
krishnamadison

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