英文:
Google sheets return Values only if exists
问题
在K列中,我只想返回那些已经存在于E列、F列等等的数值。
我要如何做到这一点,而且我将会添加2023-02、2023-03等月份?
这是我的示例链接:
https://docs.google.com/spreadsheets/d/1FMBkmMKJuIn0qtxDzvaWG2x5IpcR92X4-G9b8DUd9Z4/edit#gid=0
英文:
I have this Google sheets
In column K, I only want to return values if they are pre-existing in Column E,F, Etc..
How can I do this knowing that I will add months 2023-02, 2023-3, etc?
Here's my example:
https://docs.google.com/spreadsheets/d/1FMBkmMKJuIn0qtxDzvaWG2x5IpcR92X4-G9b8DUd9Z4/edit#gid=0
答案1
得分: 1
你可以使用数组公式。
在I4单元格中,你可以输入以下内容:
=ArrayFormula(IF(LEN(C$3:F$3), H4:L4+C4:F4/$C$1, ""))
然后向下拖动填充。
由于这个公式依赖于先前的结果,所以需要启用迭代计算(我认为限制为1次迭代是可以的)。
英文:
You could use an array formula.
In I4 you can put
=ArrayFormula(IF(LEN(C$3:F$3), H4:L4+C4:F4/$C$1, ""))
and drag down
And enable iterative calculation as the formula depends on its earlier results (ok to limit to 1 iteration I think)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论