gpt4 book ai didi

vba - Activechart.name 每次都抛出 'out of memory' 错误

转载 作者:行者123 更新时间:2023-12-04 14:30:54 27 4
gpt4 key购买 nike

我制作了多个excel文件试图解决这个问题。我已经到了这一点,但仍然收到此功能的错误消息:

Sub graph1()
ActiveChart.Name = IChart
MsgBox "done"
End Sub

这是一个启用了宏的 excel 文件,在工作表 1 上只有数字数据,范围在 A1 到 F754 之间,在工作表 2 上有一个(手动制作的)平滑散点图。

尝试运行此代码(选择图表以使 ActiveChart 有效)我收到错误:

Run Time Error '7':Out of Memory

请帮忙,我需要能够为图表命名,以便我可以使用 VBA 宏进行 .Axis 格式更改、重新调整图表大小以及其他一些操作。

最佳答案

如何像下面这样分配变量,并按照描述进行更改:

Function test()

Dim ic As Chart

' Somehow assign the chart to a variable
Set ic = ActiveChart
' Change the name as desired
ic.Parent.Name = IChart
' Change the axes as desired
ic.Axes(xlCategory).CrossesAt = -350

End Function

关于vba - Activechart.name 每次都抛出 'out of memory' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34403897/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com