如何通过 Win32::OLE 使用 Excel Union 函数?

发布于 2025-01-02 00:43:10 字数 347 浏览 1 评论 0原文

我正在使用 Win32::OLE 从 MSExcel 2010 中的 Excel 数据表创建图表。 数据不在连续的列中,我有一个包含每个数据范围的 ds 。 我试图将所有这些数据范围合并为一个范围对象,例如:

my $range = $self->{'workbook'}->Application->Union( $range, $r );

它工作正常,直到“$BS$1:$BS$168”。下一个数据位于“$BW$1:$BW$168”范围内。此范围未与之前的范围统一,我只剩下 18 个收集的数据,而不是 46 个。

原因和解决方法可能是什么? 您可以收集的系列数量有限制吗?

I am using Win32::OLE to create charts from a excel datasheet in MSExcel 2010.
The data are not in consecutive columns and I have a ds having the range of each data.
I am trying to union all these data ranges to a single range object like :

my $range = $self->{'workbook'}->Application->Union( $range, $r );

It works fine, till "$BS$1:$BS$168". The next data is in the range "$BW$1:$BW$168". This range is not getting united with the previous range and I am left with only 18 collected data instead of 46.

What may be the reason and workaround?
Is there any limit, to the number of series you can collect?

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

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

发布评论

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

评论(1

夜声 2025-01-09 00:43:10

根据此帖子 地址长度限制为 255,包括所有标点符号。您的示例范围是 13 个字符加上 1 个分隔符,最多为您提供大约 18 个项目。

结论是限制项目的数量或其长度。您能否将多个列合并在一起($BS$1:$BW$168),或者将 $ 排除在外?

According this thread there is a limit 255 for address length, including all punctuation. Your example range is 13 characters plus one for separator, giving you around 18 items maximum.

Conclusion is to limit number of items or their length. Could you merge multiple columns together ($BS$1:$BW$168), or leave $s out for instance?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文