Back working formulas

chucky48316

New Member
Joined
Oct 1, 2006
Messages
1
Don't know how to even word this so I couldn't search for an answer but any help would be appreciated....

What I'm looking to do is get cells to work together, sort of like a 2 way trigger.. i.e.

setting up a loan payment....

one cell is rate, one cell is duration, and the other cell is value of loan, than you have a solution cell=pmt(rate, nper, pv).

I want it so if you put in any 3 of the 4 values it will solve for the last one.

Again thanks for any help even if just pointing me to a already answered post.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Assumptions:

B2 contains the payment amount

B3 contains the interest rate

B4 contains the number of periods

B5 contains the loan amount

Formula:

=IF(COUNT(B2:B5)=3,CHOOSE(MATCH(TRUE,B2:B5="",0),PMT_Formula, RATE_Formula,NPER_Formula,PV_Formula),"")

...confirmed with CONTROL+SHIFT+ENTER. Replace PMT_Formula, RATE_Formula, etc., with their respective formulas.

Hope this helps!
 
Upvote 0
chucky48316,

You could also look at Goal Seek as another option.

Dufus
 
Upvote 0

Forum statistics

Threads
1,214,650
Messages
6,120,736
Members
448,988
Latest member
BB_Unlv

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