用于在Excel中的非线性图中插入缺失数据的VBA命令?

发布于 2024-12-09 17:29:41 字数 212 浏览 0 评论 0原文

因此,如果您使用 vba 在 Excel 中创建了一个图表,您如何告诉它通过平均前一个/下一个数据来插入任何丢失的数据点?您可以按照以下步骤轻松手动完成:

1 选择图表
2 打开“选择数据源”窗口
3 单击“隐藏和空单元格”按钮
4 选择“将空单元格显示为:”下的“用线连接数据点”选项,

但我需要在 vba 中自动完成此操作,因为图表不是手工绘制的。

So if you have a graph created in excel using vba, how do you tell it to interpolate any missing data point by averaging the previous / next data? You can do easily by hand by following the following steps:

1 Select your graph
2 Open the "Select Data Source" window
3 clicking the "Hidden & Empty Cell" button
4 Select "Connect Data Point with Line" option under "Show Empty Cell As:"

But I need this done automatically in vba because the graph isn't by hand.

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

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

发布评论

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

评论(1

风吹雨成花 2024-12-16 17:29:41

当我打开宏记录器并执行您所说的操作时,我得到:

ActiveChart.DisplayBlanksAs = xlInterpolated

When I turn on the Macro Recorder and do the actions you said, I get:

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