Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Library for Clipper - <b>l_sf()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
                                 L_SF()


Syntax:        L_SF(<expN1>,<expN2>,<expN3>)


Purpose:       Calculates the deposits required into a fund so as the
               fund will equal the specified amount after a certain
               period.


Arguments:     <expN1> is the total amount to be accumulated.

               <expN2> is the interest rate per month.

               <expN3> is the number of months.

Returns:       The amount to be deposited per month to accumulate the
               specified total.


Examples:      To accumulate .100,000 after 5 years how much money
               will have to be deposited in to the bank each month to
               reach this figure.  Assuming the interest rate to be 6%
               per year.

               amount = 100000
               interest = (6/12)/100
               months = 5*12

               ? L_SF(amount,interest,months)   && Result: 1433.28


Language:      C

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson