ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Numeric values functions / Financial functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Calculates the interest rate for a loan over a specific period of time with fixed payments.
Remark: The interest rate obtained is assumed to be constant over the period.
// Taux d'intérêt pour un emprunt de 25 000 Euros. Six versements
// de 5 000 Euros sont nécessaires au remboursement de l'emprunt.
ResTauxIntérêt = FinInterestRate(6, -5000, 25000)
Syntax
<Result> = FinInterestRate(<Number of Necessary Payments> [, <Payment Value> [, <Capital>]])
<Result>: Real or currency
Interest rate sought.
<Number of Necessary Payments>: Real or currency
Total number of payments that must be done.
<Payment Value>: Optional real
Value of payment (0 by default). This value must be negative.
<Capital>: Optional real or currency
Amount of loan (1 by default).
Remarks
Caution: FinInterestRate function does not return an error code. To determine if this function has generated errors, use FinError. To get more details on the error, use ErrorInfo with the errMessage constant.
Component: wd300mat.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/18/2024

Send a report | Local help