Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一列单元格,我试图根据是否选中复选框来求和。如果未选中复选框或为 FALSE,则该列将返回 SUM,如果选中该复选框或为 TRUE,则单元格将不返回 SUM,而仅显示“0”。
复选框可以链接到包含 TRUE 或 FALSE 值的单元格:
=IF(B1,0,SUM(A2:A200))