英文:
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:
If the column "A" is the same, the formula needs to combine the rows so that we obtain this:
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))
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论