Jan 25, 2002 #1 pjb Programmer May 1, 2001 148 US I need script code to calculate future value. My inputs are present value, interest rate and number of years. Thanks
I need script code to calculate future value. My inputs are present value, interest rate and number of years. Thanks
May 6, 2002 #2 Guest_imported New member Jan 1, 1970 0 // assumption here is that interest rate of 8% is stored as .08 lr_future_value = lr_present_value * (1 + lr_interest rate) ^ lr_years Upvote 0 Downvote
// assumption here is that interest rate of 8% is stored as .08 lr_future_value = lr_present_value * (1 + lr_interest rate) ^ lr_years