Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everyone,
I need to define a loan repayment schedule using PMT, IPMT and PPMT functions which i fully understand. However, based on the number of installments I need to define the corresponding number rows with the sequential numbers. Can anyone help me on his issue |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Have a look at this site:
http://www.vertex42.com/ExcelTemplat...alculator.html -- JB "WINS" wrote: Hi everyone, I need to define a loan repayment schedule using PMT, IPMT and PPMT functions which i fully understand. However, based on the number of installments I need to define the corresponding number rows with the sequential numbers. Can anyone help me on his issue |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am not sure exactly what you are looking for, but you can modifiy this code
to enumerate the rows in Column A. This sample only fills 20 rows but if you know how many lines you will need you simply change the cell A20 to a lesser or greater number, of if you want to use a different column, change the A to another letter. You can also change the sheet name or index to suit. Sub mbrfill() Range("A1") = 1 Range("A2") = 2 Set SourceRange = Worksheets("Sheet1").Range("A1:A2") Set fillRange = Worksheets("Sheet1").Range("A1:A20") SourceRange.AutoFill Destination:=fillRange End Sub "WINS" wrote: Hi everyone, I need to define a loan repayment schedule using PMT, IPMT and PPMT functions which i fully understand. However, based on the number of installments I need to define the corresponding number rows with the sequential numbers. Can anyone help me on his issue |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How generate new list in another worksheet from existing list? | Excel Worksheet Functions | |||
Generate list | Excel Worksheet Functions | |||
How to generate code from VBA and... run it ! | Excel Programming | |||
How to generate Bar Code by Microsoft Excel | Excel Programming | |||
Generate 1-to-1 outputs for a list of inputs into a excel formula | Excel Discussion (Misc queries) |