value limit for a complex formula

jordanalbert

New Member
Joined
Sep 15, 2018
Messages
1
Hi,

I have a complex formula that I am using for calculation of potential for employees receiving a bonus. It is based on limits of percentages. The formula looks like this:
=IF(C33="THRESHOLD",C29*0.5,IF(C33="target",C29,IF(C33="max",C29*1.5)))
In essence there is a drop down with the words in this formula as values. That said once I get to a certain percentage, I need this cell to not go any higher. C29 as listed is based on a calculation of another cell. In this case I need C29 to never be more than 60% of 150% of this other cell.

Is there a way to get the final condition on this formula, or do I need to do some other background cells that would limit the calculation differently?

Thanks!
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Hi,

Within your formula, you will need to replace C29 by

Code:
Max(C29,C29*0.6*1.5*OtherCell

Hope this will help
 
Upvote 0

Forum statistics

Threads
1,214,818
Messages
6,121,725
Members
449,049
Latest member
MiguekHeka

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