如何在Google表格中根据条件合并两行?

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

How can I combine two rows given a condition using google sheets?

问题

我需要基于第一列合并两行:

如果列"A"相同,公式需要合并行以获得以下结果:

如果上一行为FALSE,下一行也为FALSE,则结果为FALSE。在其他任何情况下,结果为TRUE。

如何实现这个?

谢谢!

英文:

I need to combine two rows based on the first column:

如何在Google表格中根据条件合并两行?

If the column "A" is the same, the formula needs to combine the rows so that we obtain this:
如何在Google表格中根据条件合并两行?

If the upper row is FALSE, and the lower row is FALSE we obtain FALSE. In any other case, we obtain TRUE.

How can I make this?

Thanks!!

答案1

得分: 1

试用以下公式,并在评论中告诉我们您的反馈。

=LET(x,
UNIQUE(A2:A7),
y,MAP(x,LAMBDA(cli,OR(FILTER(B2:B,A2:A=cli)))),
z,MAP(x,LAMBDA(ews,OR(FILTER(C2:C,A2:A=ews)))),
HSTACK(x,y,z))

如何在Google表格中根据条件合并两行?

英文:

Give a try to the following formula and let us know your feedback in comment.

=LET(x,
UNIQUE(A2:A7),
y,MAP(x,LAMBDA(cli,OR(FILTER(B2:B,A2:A=cli)))),
z,MAP(x,LAMBDA(ews,OR(FILTER(C2:C,A2:A=ews)))),
HSTACK(x,y,z))

如何在Google表格中根据条件合并两行?

huangapple
  • 本文由 发表于 2023年7月18日 16:00:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/76710642.html
匿名

发表评论

匿名网友

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

确定