+ Reply to Thread
Results 1 to 9 of 9

For Each Loop problem

  1. #1
    Registered User
    Join Date
    07-20-2010
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    59

    For Each Loop problem

    Hi All, Hoping you can help.

    I am trying to create a repayment schedule for a loan using VBA. The loan has a number of variables - amount, grace period, repayment frequency. In the attached example the loan is for $20,000,000 and there will be no repayments for 52 weeks and thereafter repayments will be equal amounts every 4 weeks. I have been trying to do this with a For Each loop looping through the cells to be populated.

    I attach a spreadsheet which hopefully makes the problem clearer.

    Many thanks in advance,

    Andrew
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    07-20-2010
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    59

    Re: For Each Loop problem

    Just to be clear, interest is not a factor I simply want to divide the principal by the appropriate number of payments and populate the range.

    TIA,

    Andrew

  3. #3
    Forum Expert OllieB's Avatar
    Join Date
    12-20-2012
    Location
    Netherlands
    MS-Off Ver
    Excel 2007 (home) & 2010 (office)
    Posts
    1,542

    Re: For Each Loop problem

    Andrew, and over what period must the principal be re-paid fully, or in other words how many installments?
    If you like my contribution click the star icon!

  4. #4
    Registered User
    Join Date
    07-20-2010
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    59

    Re: For Each Loop problem

    Hi Ollie,

    Yes that is another variable. In the example the loan is to be repaid over 10 years.

    Andrew

  5. #5
    Forum Expert OllieB's Avatar
    Join Date
    12-20-2012
    Location
    Netherlands
    MS-Off Ver
    Excel 2007 (home) & 2010 (office)
    Posts
    1,542

    Re: For Each Loop problem

    How do you want to show the result?

    a vertical list of dates and amounts, or a horizontal list (row 9) whereby each column equals one calendar week?

    In case you opt for the horizontal list, note that you have not provided dates for all columns needed. Do you want the coding to add these dates (in row 2) as well?

  6. #6
    Registered User
    Join Date
    07-20-2010
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    59

    Re: For Each Loop problem

    Hi Ollie,

    I require the amounts to be populated in row 9. I don't need any code to add more dates. In the example file I just cut them out.

    My intention is that the relevant cells in row 9 will form a named range. The cells will be populated with the formula if the relevant date is further away than the grace period and then only every 4 weeks (or whatever value is contained in cell C7). If you can provide some code for the loop then I think have enough VBA knowledge to be able to adjust it to meet my specific requirements.

    Your continuing interest in my problem is very much appreciated.

    Andrew

  7. #7
    Forum Expert OllieB's Avatar
    Join Date
    12-20-2012
    Location
    Netherlands
    MS-Off Ver
    Excel 2007 (home) & 2010 (office)
    Posts
    1,542

    Re: For Each Loop problem

    Try

    Please Login or Register  to view this content.
    or

    Please Login or Register  to view this content.
    whichever bit of code you find easier to work with

  8. #8
    Registered User
    Join Date
    07-20-2010
    Location
    London, England
    MS-Off Ver
    Excel 2010
    Posts
    59

    Re: For Each Loop problem

    Ollie, Thanks very much for this -the second version looks a bit easier for me to work with. I can't, however, see within the code where the grace period of 52 weeks is dealt with.

    Andrew

  9. #9
    Forum Expert OllieB's Avatar
    Join Date
    12-20-2012
    Location
    Netherlands
    MS-Off Ver
    Excel 2007 (home) & 2010 (office)
    Posts
    1,542

    Re: For Each Loop problem

    It is not, as I assumed cell (9,4) to be the date of the first instalment. To calculate the date of the first instalment you could use the following code

    Please Login or Register  to view this content.
    the above code returns the date x weeks from now (in the example 52 weeks), depending on which date you have shown for the column headers, you may need to adjust for the day_of_the_week which can be retrieved usign the code below

    Please Login or Register  to view this content.
    Using these two statements you can arrive at the 'date' for the first instalment, and using that date you can search for the column holding that date using

    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1