如何对 excel 中的百分比求和,以便它们也增加?不仅要总结
How to sum percentages in excel, so that they increase as well? Not only to sum up
如何总结百分比(在 Excel 中),但它们会随着时间的推移而增加?
例如,我有 table 百分比增加:
所以1D列不应该是TOTAL往下增加10%,而是更多。
应该会增加 12% 左右(根据我的估计)。
示例:
5% > X + 5%
3% > 105% + 3% (3% out of a now new number which is 105% and not the initial 100%)
....
所以我想看到 table 中显示的增长:5%、3%、2%
但是总和应该反映增加的部分。
您可以使用FVSCHEDULE
函数来计算增长百分比:
=FVSCHEDULE(100;A2:A12)/100-1
如何总结百分比(在 Excel 中),但它们会随着时间的推移而增加?
例如,我有 table 百分比增加:
所以1D列不应该是TOTAL往下增加10%,而是更多。 应该会增加 12% 左右(根据我的估计)。
示例:
5% > X + 5%
3% > 105% + 3% (3% out of a now new number which is 105% and not the initial 100%)
....
所以我想看到 table 中显示的增长:5%、3%、2%
但是总和应该反映增加的部分。
您可以使用FVSCHEDULE
函数来计算增长百分比:
=FVSCHEDULE(100;A2:A12)/100-1