具有动态范围的 Excel 函数

发布于 2024-12-25 08:53:35 字数 310 浏览 3 评论 0原文

因此,我正在创建一个 .csv 文件,其中包含要在 Excel 中绘制的数据,但我想绘制它们的总和。 例如

集合1:

0 5 6 67
5 6 1 0

集合2:

8 5 4 664
1 2 5 694
6 4 1 545

所以我希望集合1中每一列的总和作为最后的一行,以及集合2中每一列的总和作为最后的一行。但问题是 set1 和 set2 可能有不同的行数。

是否有任何简单的公式可以使用 .csv 导出以在 Excel 中执行此操作?

So I am creating a .csv file with data I want to plot in excel, however I want to plot the sum of them.
e.g.

set 1:

0 5 6 67
5 6 1 0

set2:

8 5 4 664
1 2 5 694
6 4 1 545

So I want the sum of each column in set1 as a row in the end and the sum of each column in set2 at the end. But the problem is that set1 and set2 might have a different number of rows.

Is there any easy FORMULA that I can export with the .csv to do so in excel?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明媚如初 2025-01-01 08:53:35

我不知道我是否正确理解您的问题,但您可以尝试以下操作:

假设左上角的数字位于单元格 A1 中,您可以使用以下公式:

=SUM(OFFSET($A$1, 0, COLUMN()-1, ROW()-1, 1))

将其打印到工作表最后一行的每个单元格中。这样,您就可以为每个单元格提供一个固定的公式,无论列数或行数如何,甚至行的长度不同,该公式都可以使用。

set2 的示例:

8   5   4   664
1   2   5   694
6   4   1   545
15  11  10  1903    <-- formula pasted here

I don't know if I understand your question correctly, but you might try this:

Assuming that the top left number is in Cell A1, you could use the following formula:

=SUM(OFFSET($A$1, 0, COLUMN()-1, ROW()-1, 1))

Print this into every cell of the last row of your sheet. This way, you have a fixed formula for every cell that works regardless of the number of columns or rows, even when the rows have different lengths.

Example for set2:

8   5   4   664
1   2   5   694
6   4   1   545
15  11  10  1903    <-- formula pasted here
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文