Help Please

bhaktany

New Member
Joined
Nov 3, 2005
Messages
7
I am trying to add code to my macro that will calculate interest on a mortgage. For example, in spreadsheet 1, i have 30 rows of data (each a different loan) that i need to calculate interest. I need the macro to calculate the interest for each of the 30 rows of data. Once calculated, i will use the sum function to add up the interest for all the loans in spreadsheet 2. Can anyone help me out?
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Welcome to the Board!

Can you post your code?

And what formula are you using to calculate the interest? What's the time frame? What's the format of the sheet?

Smitty
 
Upvote 0
I am a beginner so try not to laugh too much at my code below. Thanks for your help.


Dim perdiem As Integer 'interest per day'
Dim numdays As Integer 'number of days of interest'
Dim upb2 As Integer 'current balance used to calculate the interest'
Dim intd As Integer 'interest paid to date'
Dim pr_rate As Integer 'rate'
Dim settledate As Integer 'settle date'
Dim interestcalc As Integer 'interest'

For a = 2 To 6500
Worksheets("MLS").Select.Activate
upb2 = Worksheets("MLS").Range("AF2")
pr_rate = Worksheets("MLS").Range("AH2")
perdiem = Application.WorksheetFunction.Product(pr_rate, 0.00003)
intd = Worksheets("MLS").Range("AD2")
Worksheets("Funding Memo").Select.Activate
settledate = Worksheets("Funding Memo").Range("A3")
numdays = Application.WorksheetFunction.Days360(intd, settledate)
interestcalc = CLng(Application.WorksheetFunction.Product(perdiem, numdays, upb2))
Worksheets("MLS").Range("DI2").Select
Selection = interestcalc
Next a
End
 
Upvote 0

Forum statistics

Threads
1,203,531
Messages
6,055,939
Members
444,838
Latest member
Eng76

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