ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Numeric values functions / Financial functions
  • Current value of an investment
FinCurrentVal (Example)
Current value of an investment
WEBDEV - Server codeAjax The following code is used to calculate the current value of an investment. The payment value, the future value, the number of periods and the interest rate are entered by the user in edit controls (EDT_PaymentValue, EDT_FutureValue, EDT_NbPeriod, EDT_Rate).
We assume that the payments must be made at the end of the period (False constant).
// -- Click code on BTN_CurrentValue
// Declare the variable
ResCurrentValue is real
// Calculate the current value
ResCurrentValue = FinCurrentVal(-EDT_PaymentValue, EDT_FutureValue, EDT_NbPeriod, EDT_Rate, False)
IF FinError() = 0 THEN
Info("The current value is: " + ResCurrentValue)
ELSE
// Display the error message
Error(ErrorInfo(errMessage))
END
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help