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.
这是公式 =SUM(Sheet2!A2:A10)
我一直在尝试做的是当我向下拖动列以将公式更改为 =SUM(Sheet2!B2:B10) 等等。
基本上是发生了什么我们向右拖动我们在列字母上得到一个增量,但是当我向下拖动时我想要它
对于有限数量的行,Row2 中的以下公式并复制下来应该可以工作:
=SUM(INDIRECT("Sheet2!"&CHAR(64+ROW())&"2:"&CHAR(64+ROW())&10))
超过 26 行我建议切换到使用辅助列,而不是从行号创建字符值。