我如何动态更改数据?

问题描述 投票:0回答:1

我正在创建一个具有净值预测(目标)和实际净值(现实净值)的个人预测,我在目标净资产预测中每月使用24.5%的增长率。但是我想知道如果我的实际净值已经更高,该如何自动更改其净值预测目标。

检查我在这里有什么:https://docs.google.com/spreadsheets/d/1WyJXEHm2M-QRP6zu1VfHIldd6nWP3EhT1r0WrzOiYC8/edit?usp=sharing

有人可以在这里帮助我吗?

if-statement google-sheets google-sheets-formula
1个回答
0
投票

尝试简单的IF,例如:

=IF(C2<B2, (B2/100)*124.5, (C2/100)*124.5)

0


0
投票

一个简单的IF语句将在这里工作。

在“ Networth预测”列中,使用类似IF的语句

{} =“伪代码”

=IF({actual net worth > forecasted net worth}, {forecasted net worth = actual net worth + forcecasted increase},{forecasted net worth = forecasted net worth + forecasted increase})

但是,您不应该始终使用实际净值来计算下一个预测的净值吗?

在这种情况下,您想使用类似的东西

=IF(ISBLANK({actual net worth cell}),{forecasted net worth = forcasted net worth + forecasted increase}, {forecasted net worth = actual net worth + forecasted increase})
© www.soinside.com 2019 - 2024. All rights reserved.