简体   繁体   English

不确定如何编写Excel公式

[英]Not sure how to write excel formula

I have 1000. What I want to do is add x% and keep adding x% to the next number 我有1000。我想做的是添加x%,并继续将x%添加到下一个数字

  • 1000 * 0.01 = 10 1000 * 0.01 = 10
  • 1010 * 0.01 = 10.1 1010 * 0.01 = 10.1
  • 1020.1 * 0.01 = 10.201 1020.1 * 0.01 = 10.201
  • etc ... 等...

How do I write this formula please? 我该如何写这个公式?

In A2 enter: A2中输入:

=(1.01) * A1 =(1.01)* A1

and copy down 然后抄下来

Try the Future Value formula: 试试“终值”公式:

Syntax: 句法:

FV(rate,nper,pmt,[pv],[type]) FV(rate,nper,pmt,[pv],[type])

Arguments: 参数:

Rate Required The interest rate per period. 速率 所需每个周期的利率。

Nper Required The total number of payment periods in an annuity. 所需Nper年金的支付期总数。

Pmt Required The payment made each period; 需要 Pmt每期付款; it cannot change over the life of the annuity. 在年金的使用期限内,它不能改变。 Typically, pmt contains principal and interest but no other fees or taxes. 通常,pmt包含本金和利息,但不包含其他费用或税金。 If pmt is omitted, you must include the pv argument. 如果省略了pmt,则必须包含pv参数。

Pv Optional The present value, or the lump-sum amount that a series of future payments is worth right now. Pv 可选当前值,或一系列未来付款现在值得的总价。 If pv is omitted, it is assumed to be 0 (zero), and you must include the pmt argument. 如果省略pv,则假定它为0(零),并且必须包含pmt参数。

Type Optional The number 0 or 1 and indicates when payments are due. 类型 可选数字0或1,指示何时到期。 If type is omitted, it is assumed to be 0. 如果省略type,则假定为0。

https://support.office.com/en-us/article/FV-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3 https://support.office.com/zh-CN/article/FV-function-2eef9f44-a084-4c61-bdd8-4fe4bb1b71b3

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM