Loan Calculation

Helen1974

New Member
Joined
Oct 16, 2010
Messages
34
I need to find a formula to help with the following.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
<o:p></o:p>
If i loan money in the following manner and if the loan amount of loan one is a variable amount, as is the interest and the laon period, how can i calculate the value of my investment ? over any period of time, such as its value in 6, 12, 18, 24 months or longer if desired.<o:p></o:p>
<o:p></o:p>
Examples<o:p></o:p>
<o:p></o:p>
If i ONLY loan €100.00 to a client over 10 weeks at an interest rate of 10%, the client will make a weekly payment of €11.00.<o:p></o:p>
<o:p></o:p>
On week no 2 i will receive €11 from client number 1, which i will lend to client number 2 at the same rate of interest and for the same period of time. This client will make a weekly payment of €1.21.<o:p></o:p>
<o:p></o:p>
On week no 3 i will receive a payment from client 1 of €11.00 and a payment from client 2 of €1.21, totalling €12.21. This will be loaned to client number 3 at the same rate and time period as the above other clients and the client will make a weekly payment of €1.34.<o:p></o:p>
<o:p></o:p>
This will continue over an unspecified period of loans, clients and time.<o:p></o:p>
 
Last edited:

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Hi mate,

That code you sent to me is excellent, I have tested it against proven records and it hits the nail on the head every time. One last favour tho, from within the code you supplied, how can I change the currency to show Euro or Pounds instead of Dollars.

Cheers. ;)
 
Upvote 0
I don't know :eek: -- I would have thought that your regional settings would have automatically changed the dollars to pounds. Does changing the cell formatting not work?

Maybe someone on your side of the pond knows.

Or lend in Dollars, and be a currency speculator as well as a loan shark ...
 
Upvote 0
Wow, you dont know, there I was thinking that you were a genious of sorts, lol lol. Its no big deal anyway.

;)
 
Upvote 0
Good morning America, how are you ;)

Tried changing the settings in excel to make changes to the currency symbol, no luck tho.

The 3 new cells you entered at the top of the page, Loan Amt, Interest and Payment Period can be formatted to any format I like, however, the results which are calculated when RUN has been clicked can not be formatted.

So as you seem to NOT to have a clue as to why this is, I got to thinking about it. and I have concluded that the currency symbol is written into your code, therefore the solution needs to come from you :ROFLMAO:.

What do you think of that, and me blonde and all :eek: lol

chat soon
 
Upvote 0
Hi, When I used the "FormatCurrency" (see VB Help) Function on all the relevant Variables throughout the code, I managed to changed all the Results Formats to "£".
Example:-
Code:
Set rOut = rOut.Offset(1)
            rOut.value = Array(iWeek, .count, FormatCurrency(cRcpt), FormatCurrency(cRcvb))
        Next iWeek
 
Upvote 0

Forum statistics

Threads
1,215,966
Messages
6,127,974
Members
449,414
Latest member
sameri

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