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.
您如何应用通用公式来添加任何行的列总和?我希望能够应用一个适用于所有行的函数,而不是手动输入 A1....例如, A[current_row]+B[current_row]=sum;
我不确定,您要做什么以及为什么要这样做。最快的方法肯定是输入A1+B1并复制公式。或者$A1+$B1,如果您想正确复制公式,但对相同的列求和。
A1+B1
$A1+$B1
如果你真的很想拥有当前行,你可以使用INDIRECT:INDIRECT("A"&ROW(C1))单元格 C1 中的公式返回单元格A1相似或 B1 的值,将两者相加,然后完成。
INDIRECT
INDIRECT("A"&ROW(C1))
A1