Formula Override

osscie3

Board Regular
Joined
Apr 30, 2014
Messages
70
I've built a pretty extensive loan pricing model for my boss. Basically you put in some parameters and it does quite a few lookups to determine an interest rate we will charge. Long story short I worked for hours on the formula to get it just right.

Now I want to add in functionality to where if my boss wants to input his own custom interest rate, he can do so. The problem I want to avoid is I don't want the formula to be erased because he basically typed in the exact interest rate he wants.

What's the best way to go about implementing this? I could just put an "Override?" check mark beside it that will allow the formula to be saved once unchecked. But I wanted to get the Excel gods and goddesses opinions before I implement.


Thanks!
 
Last edited:

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
One way would be to have an override column on the sheet. If there is a value entered in there, use that, otherwise use the formula.
If that value was in cell A2, the structure of that would look something like this:
Code:
[B]=IF(A2<>"",A2,[/B][I]your long formula here[/I][B])[/B]
 
Upvote 0

Forum statistics

Threads
1,215,174
Messages
6,123,454
Members
449,100
Latest member
sktz

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