Mortgage game calculator

weaker123

New Member
Joined
Jun 22, 2017
Messages
1
Here I have 3 pictures of a worksheet I'd like to create. The worksheet is on house mortgages I'm supposedly buying. I want to be able to delete them and put them in and have the ease of starting each one by buying and selling property at different months in the year period.


Month 1: Imgur: The most awesome images on the Internet
Month 5: Imgur: The most awesome images on the Internet
Month 8: Imgur: The most awesome images on the Internet


I've also included starting off text (VBA) of what I think the button should have to help. Thanks for your time.





Private Sub CommandButton1_Click()




'' initial constants =0
a = 0
b = 0
c = 0
d = 0
''\\initial constants =0




''payback to bank per month
Range("k10") = 0.003 * Range("h10")
''\\payback to bank per month




''constant months,,, a,b,c,d,,,,when the house is owned. I buy and sell the houses every couple of months (see sheet month 8)
Range("l10") = a * 0.997 * Range("h10")
''\\constant months,,, a,b,c,d,,,,when the house is owned. I buy and sell the houses every couple of months (see sheet month 8)




''adding all the owe back mortgages together
Range("l16") = Range("l10") + Range("l11") + Range("l12")
''\\adding all the owe back mortgages together




End Sub




 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.

Forum statistics

Threads
1,222,688
Messages
6,167,643
Members
452,127
Latest member
jayneecm

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