ファイナンス関数
ファイナンス関数は、金融アルゴリズムまたは数学的計算を適用します。
FinanceCAGR
FinanceCAGR(BeginningValue, EndingValue, NumYears)
: 複合年間成長率 (年換算ベースの幾何平均成長率) を計算します。
FinanceEffectiveRate
FinanceEffectiveRate(NominalRate, PaymentsPerYear)
: 実効年利率 (名目金利から修正された、延滞金の年間複利を含む金利としての貸出金または金融商品の利率) を計算します。
FinanceFV
FinanceFV(Rate, NumPayments, PaymentAmount, PresentValue, PayAtPeriodBegin)
: 投資の将来価値 (一定の金利または収益率を前提とした将来の特定の時点における資産の価値) を計算します。
FinanceFVSchedule
FinanceFVSchedule(Principle, Year1Rate, Year2Rate)
: 将来価値スケジュール (投資に一連の金利を適用した後の初期元本の将来価値) を計算します。
FinanceIRR
FinanceIRR(Value1, Value2)
: 内部収益率 (投資コストが投資の利益につながる金利) を計算します。これは、投資から得られるすべての利益は金銭の時間的価値に固有であり、投資がこの利益でゼロの正味現在価値を持つことを意味します。
FinanceMIRR
FinanceMIRR(FinanceRate, ReinvestRate, Value1, Value2)
: 修正内部収益率 (IRR に関するいくつかの問題を解決することを目的とした、内部収益率の修正) を計算します。MIRRは、投資の魅力度の金融尺度です。
FinanceMXIRR
FinanceMXIRR(FinanceRate, ReinvestRate, Value1, Date1, Value2, Date2)
: 定期的でない投資の修正内部収益率を計算します。
FinanceNominalRate
FinanceNominalRate(EffectiveRate, PaymentsPerYear)
: 名目年利 (複利の頻度 (月など) が基本時間単位 (通常は年) と同じでない場合、金利は名目金利と呼ばれる) を計算します。
FinanceNPER
FinanceNPER(Rate, PaymentAmount, PresentValue, FutureValue, PayAtPeriodBegin)
: 投資またはローンの期間数を計算します。
FinanceNPV
FinanceNPV(Rate, Value1, Value2)
: 投資の正味現在価値 (資金調達費用が満たされた時点で、現在価値におけるキャッシュフローの超過または不足を判断する) を計算します。
FinancePMT
FinancePMT(Rate, NumPayments, PresentValue, FutureValue, PayAtPeriodBegin)
: ローンの支払額を計算します。
Alteryx PMT Versus Excel PMT
Some important distinctions must be made when comparing the Alteryx FinancePMT function to Excel's PMT function.
Both the Alteryx and Excel PMT functions use the same PMT formula. However, there are differences to be aware of:
Excel treats positive values as inflows (money coming in) and negative values as outflows (money going out). So, to get a positive payment number, you must give PresentValue and FutureValue opposite signs (positive/negative). If PresentValue and FutureValue have the same sign, Excel returns a negative PMT to balance the cash flows (since a payment is considered money going out).
The Alteryx function assumes the same “positive deposit” framing and, by default, returns PMT as a negative number (the payment is money going out). As such, to make the returned PMT positive, it's common to enter FutureValue with the opposite sign to PresentValue (often negative). For example:
FinancePMT(0.005, 360, -250000, 0, 0) returns ~1499 (note that PresentValue is a negative number). If PresentValue were a positive number, the return would be -1499 to signify money out.
FinancePV
FinancePV(Rate, NumPayments, PaymentAmount, FutureValue, PayAtPeriodBegin)
: 投資の現在価値 (金銭の時間価値および投資リスクなどのその他の要因を反映するために割り引かれる、所定の日付での将来の支払いまたは一連の将来の支払いの金額) を計算します。
FinanceRate
FinanceRate(NumPayments, PaymentAmount, PresentValue, FutureValue, PayAtPeriodBegin)
: 金利を (期間ごとに) 計算します。
FinanceXIRR
FinanceXIRR(Value1, Date1, Value2, Date2)
日付付き投資の修正内部収益率を計算します。
FinanceXNPV
FinanceXNPV(Rate, Value1, Date1, Value2, Date2)
: 定期的でない投資の正味現在価値を計算します。