Skip to main content

金融函数

金融函数应用金融算法或数学计算。

FinanceCAGR

FinanceCAGR(BeginningValue, EndingValue, NumYears):计算复合年增长率:按年计算的几何平均增长率。

FinanceEffectiveRate

FinanceEffectiveRate(NominalRate, PaymentsPerYear):计算有效年利率:贷款或金融产品的利率,由名义利率重述为按年复利、期末支付的利率。

FinanceFV

FinanceFV(Rate, NumPayments, PaymentAmount, PresentValue, PayAtPeriodBegin):计算投资的未来价值:假设以特定的利率或收益率,资产在未来指定时间的价值。

FinanceFVSchedule

FinanceFVSchedule(Principal, 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 与 Excel PMT

在比较 Alteryx FinancePMT 函数和 Excel 的 PMT 函数时,必须注意一些重要的区别。

Alteryx 和 Excel PMT 函数使用相同的 PMT 公式。但是,需要注意以下差异:

  • Excel 将正值视为流入(资金流入),将负值视为流出(资金流出)。因此,要获得正的付款金额,您必须为 PresentValue 和 FutureValue 赋予相反的符号(正/负)。如果 PresentValue 与 FutureValue 同号,Excel 会返回负的 PMT 以平衡现金流(因为付款被视为资金流出)。

  • Alteryx 函数采用相同的“正向存款”假设,默认返回负的 PMT(付款被视为资金流出)。因此,为使返回的 PMT 为正,通常将 FutureValue 设为与 PresentValue 相反的符号(多为负号)。例如:

    FinancePMT(0.005, 360, -250000, 0, 0) 返回 1499(请注意,PresentValue 为负数)。如果 PresentValue 为正数,则返回值为 -1499,表示资金流出。

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):计算投资在指定日期的净现值。