Google表格仅返回存在的数值。

huangapple go评论74阅读模式
英文:

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

Google表格仅返回存在的数值。

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)

huangapple
  • 本文由 发表于 2023年1月9日 18:38:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/75056060.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定