Financial.FV メソッドとは? わかりやすく解説

Financial.FV メソッド

定期的な定額支払いおよび一定した利率基づいて投資将来価値指定する Double 型の値を返します

名前空間: Microsoft.VisualBasic
アセンブリ: Microsoft.VisualBasic (microsoft.visualbasic.dll 内)
構文構文

Public Shared Function FV
 ( _
    Rate As Double, _
    NPer As Double, _
    Pmt As Double, _
    <OptionalAttribute> Optional PV As
 Double = 0, _
    <OptionalAttribute> Optional Due As
 DueDate = DueDate.EndOfPeriod _
) As Double
public static double FV (
    double Rate,
    double NPer,
    double Pmt,
    [OptionalAttribute] double PV,
    [OptionalAttribute] DueDate Due
)
public:
static double FV (
    double Rate, 
    double NPer, 
    double Pmt, 
    [OptionalAttribute] double PV, 
    [OptionalAttribute] DueDate Due
)
public static double FV (
    double Rate, 
    double NPer, 
    double Pmt, 
    /** @attribute OptionalAttribute() */ double PV, 
    /** @attribute OptionalAttribute() */ DueDate Due
)

パラメータ

Rate

必須投資期間を通じて一定の利率を示す Double 型の値。たとえば、10%年率 (APR) で自動車ローン利用する際、毎月支払い指定した場合月々利率は 0.1/12 (0.0083) になります

NPer

必須投資期間全体での支払い回数合計を示す Double 型の値。たとえば、4 年間、月々分割払い自動車ローン利用した場合合計で 4 × 12 (= 48) の返済期間があることになります

Pmt

必須毎回支払い額を示す Double 型の値。通常支払い額には元金利息含まれます。支払い額を投資間内変更することはできません。

PV

省略可能。現在の投資額、つまり将来行われる一連の支払い現時点一括支払いした場合合計金額を示す Double 型の値。たとえば、自動車購入するために資金借り入れた場合ローン金額は、毎月返済対象となる貸手にとっての現在価値表します省略した場合、0 が使用されます。

Due

省略可能。支払い期日を示すオブジェクト型 DueDate 列挙型 の値。各期の期末支払場合DueDate.EndOfPeriod を、各期の期首支払場合DueDate.BegOfPeriodそれぞれ引数指定します省略した場合は、DueDate.EndOfPeriod指定したものと見なされます

戻り値
定期的な定額支払いおよび一定した利率基づいて投資将来価値指定する Double 型の値を返します

解説解説
使用例使用例

この例では、FV 関数使用して投資将来価値返します利率 (APR / 12)、支払い回数 (TotPmts)、毎月支払い額 (Payment)、現在価値 (PVal)、および支払い期日 (PayType) を指定しますPayment出金を表すので、負数指定してます。

Sub TestFV()
    Dim TotPmts As Integer
    Dim Payment, APR, PVal, Fval As Double
    Dim PayType As DueDate
    Dim Response As MsgBoxResult

    ' Define money format.
    Dim Fmt As String =
 "###,###,##0.00"
    Payment = CDbl(InputBox("How much do you plan to save each
 month?"))
    APR = CDbl(InputBox("Enter the expected interest annual percentage
 rate."))
    ' Ensure proper form.
    If APR > 1 Then APR = APR / 100
    TotPmts = CInt(InputBox("For how many months do you expect
 to save?"))
    Response = MsgBox("Do you make payments at the end of month?",
 MsgBoxStyle.YesNo)
    If Response = MsgBoxResult.No Then
        PayType = DueDate.BegOfPeriod
    Else
        PayType = DueDate.EndOfPeriod
    End If
    PVal = CDbl(InputBox("How much is in this savings account
 now?"))
    Fval = FV(APR / 12, TotPmts, -Payment, -PVal, PayType)
    MsgBox("Your savings will be worth " & Format(Fval,
 Fmt) & ".")
End Sub
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

Financial.FV メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



Financial.FV メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS