Google 表格:使用序列或其他方式填充列?

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

我正在尝试为我的图形生成数据(现金流、收购/流失率等),但我在自动化公式方面遇到了麻烦。

这是我想做的:

我的游戏生命分为3个主要阶段,预发布、发布、生命结束,我试图生成前5年,每个阶段都有自己的前提 预发布:每月 5000 个新用户,持续 3 个月,流失率 50% 发布:每月10万新用户,流失率70% 生命周期结束:每月 1000 个新用户,流失率 90%

如果我想进行多年的预测,有没有办法在一个公式中生成一列值?

=序列(nbmonthphase1, 1, 0, newusersphase1) + =序列(nbmonthphase2, 1, 0, newusersphase2) + =序列(nbmonthphase3, 1, 0, newusersphase3)

感谢您的支持

我玩过 =sequence(nbmonth, 1, 0, newusersphase1) 等,但没有找到将 3 个阶段合并在一起的方法。

google-sheets
1个回答
0
投票

您可以尝试:

=tocol(reduce(,C5:C,lambda(a,c,vstack(a,if(offset(c,,-1)="value",sequence(offset(c,-1,),1,if(max(a)=0,0,max(a)+c),c),)))),1)

© www.soinside.com 2019 - 2024. All rights reserved.