More Efficient Way to Avoid Multiple Calculations?

我与影子孤独终老i 提交于 2019-12-11 06:25:50

问题


I have a lot of these chains in my sheet. Is there a more efficient way than what I am doing?

https://docs.google.com/spreadsheets/d/1sm1WLL6CJHckeUE1eyZQSG4CRb35UVxOb1Ymwtf6Yj8/edit?usp=sharing

=$A$2+5
=$A$2+15
=$A$2+20

etc.

It there a single formula or more efficient one that may reduce calculation time?


回答1:


try like this:

=ARRAYFORMULA(ROW(A1:A20)*5+A2)



来源:https://stackoverflow.com/questions/57979532/more-efficient-way-to-avoid-multiple-calculations

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!