I am trying to make an "accounting" model for Amortized cost. I will make one array with the actual payment dates, one array with the "amortized cost" and another array showing values at reporting day (e.g. 31.12). I have already made this manually, but want this to perform these actions by "one click", by just changing input data. I am pretty new to VBA (just a couple of days in) and am struggling so far with the "payment date"-array, showing the cash flow on the bond.
So far I have the following code
Sub LoanAmortization()
'----------------------------------------------------------------------------------------------------------------------------------------------
'1)Define the arrays and variables that will be used along the process
'----------------------------------------------------------------------------------------------------------------------------------------------
'Dim Trends As Workbook 'Variable to refer to the workbook
Dim initLoanBal As Double 'Initial bond amount
Dim DayCountBasis As Double 'Day count convention
Dim BegDate As Date 'Date of bond repayment
Dim MaturityDate As Date 'Date of bond repayment
Dim TransCost As Double 'Transactioncosts on bonds
Dim PayFreq As Double 'Frequency of coupon payments on bond (e.g. quarterly)
Dim initRate As Double 'Interest rate on bond
Dim CashFlowArray() As Integer 'Array of Cash flows on bond
Dim CouponFreqString As String
Dim NomRate As Double 'Rate used for cash flow calculation
Dim i As Long
''----------------------------------------------------------------------------------------------------------------------------------------------
''2)Set variables for the calculation
''----------------------------------------------------------------------------------------------------------------------------------------------
initLoanBal = ThisWorkbook.Worksheets("Amortisering").Range("D3").Value
TransCost = Worksheets("Amortisering").Range("D4").Value
initRate = Worksheets("Amortisering").Range("D5").Value
Spread = Worksheets("Amortisering").Range("D6").Value
DayCountBasis = Worksheets("Amortisering").Range("D7").Value
CouponFreq = Worksheets("Amortisering").Range("E8").Value
CouponFreqString = Worksheets("Amortisering").Range("D8").Value
BegDate = Worksheets("Amortisering").Range("D9").Value
MaturityDate = Worksheets("Amortisering").Range("D10").Value
NomRate = initRate + Spread
'----------------------------------
'Format variables for the calculation
'----------------------------------
Cells(5, 4).Select
Selection.Value = initRate
Selection.NumberFormat = "0.00%"
Cells(6, 4).Select
Selection.NumberFormat = "0.00%"
'-----------------------------------------------------------
'Set cash flows dates
'-----------------------------------------------------------
NoPeriods = DateDiff(CouponFreqString, BegDate, MaturityDate, vbMonday)
' Number of periods ("payments") on the bond
Range("G29") = BegDate
Range("F31") = BegDate
Range("G31").NumberFormat = "_(* #,##0_);_(* (#,##0);_(* ""-""??_);_(@_)"
For i = 1 To NoPeriods
Cells(29, 7 + i) = DateAdd(CouponFreqString, i, BegDate)
Cells(31 + i, 6) = DateAdd(CouponFreqString, i, BegDate)
Next i
'----------------------------------------------
'Set number of days dager
'----------------------------------------------
For i = 1 To NoPeriods ' No. days between payments (daycount convention)
Cells(30, 7 + i) = WorksheetFunction.YearFrac(Cells(29, 6 + i), Cells(29, 7 + i), DayCountBasis)
Next i
'----------------------------------------------
'Cash flow array
'----------------------------------------------
For c = 1 To NoPeriods
For i = 1 To NoPeriods
Cells(30 + i, 7 + c) = initLoanBal * NomRate * Cells(30, 7 + c)
Next i
Next c
Range("G31") = -initLoanBal + TransCost
End Sub
GOAL
So the problem appears in the "cash flow array" part. 1. The ultimate goal is to use XIRR to calculate the Effective interest rate for each period based on NomRate.
I want NomRate to vary for each period, as there is a change in the floating rate.
I want the final payment in each row to be equal to the interest payment and the repayment of the loan (i.e. initLoanBal).
I want the first cash flow to be equal to previous period calculated Amortized cost.
I want the Array to reduce by 1 per iteration
Please see image for an illustration (the green values are the "amortized cost values" from next array which is the amortized cost values) of how I want it to look
I suggest you to use function instead of a Macro to do this.
The function will act as An Excel Function. As an example, if I do a function with the name TRIPLE that calcs 3 * x, where x is a cell number, I can use TRIPLE(A1) in excel to calc the triple in cell A1.
In your example, with your clarification, I tried to understand every step to do this code for you, however, the complexity didn't help me to do so.
But I started something. The idea for this function is to you specify everything you need (the cells starting with Hovedstol), the dates, the taxes and the index from result. If you need it, you can add anything using my instructions. The result for the function is the calculation of the Formel.
Example: for your first result, you should wright, in excel:
For your second result:
The taxes are organized in G2:G20.
So, the code needs to have this parameters at the beggining in vba to act as a Function:
Now, you will need to work with arrays to do whatever you want, you won't need to format the cells, you'll be able to create your sheet whatever you want in multiple times and the code will still work. To create an array, you need first to specify the quantity of elements, in this example, you can create an matrix with 3 columns from 1 to 3 (starting with number 0 if not specified) and 2 lines starting with number 1 (same, if you not specify, the 0 number is the first one):
You can also Redim your array, but you'll loose your data even if you use preserve, you can't change the variable type. If the size has a value from a variable, you NEED to use ReDim:
To transform an excel.range to an array, just use this after your declaration:
To use the matrix, just find the line and column you need, examples:
To use any excel function, like CountA function, just use this:
That's what I did:
With this, you should be able to continue the code, sorry to not help more. If you have any doubt to how do something more specific, I'll try to help you.