Excel VBA“范围类的自动填充方法失败”
以下 VBA 代码 (Excel 2007) 失败,并出现错误 1004,“范围类的自动填充方法失败。”。谁能告诉我如何解决它?
Dim src As Range, out As Range, wks As Worksheet
Set wks = Me
Set out = wks.Range("B:U")
Set src = wks.Range("A6")
src.AutoFill Destination:=out
(注意:我已经为此进行了谷歌搜索等。它经常出现,但我看到的所有响应都与格式错误的范围地址有关,据我所知这不是我的问题。
根据某人的建议,我尝试替换自动填充行其结果如下:
src.Copy out
这会使我的 Excel 会话陷入明显的无限循环,消耗 100% CPU,然后永远挂起,
显然源必须是自动填充的目标范围的一部分,所以我的代码现在看起来像这样。 this:
Dim src As Range, out As Range, wks As Worksheet
Set wks = Me
Set out = wks.Range("B1")
Set src = wks.Range("A6")
src.Copy out
Set out = wks.Range("B:U")
Set src = wks.Range("B1")
src.AutoFill Destination:=out, Type:=xlFillCopy
最后一行出现同样的错误。
The following VBA code (Excel 2007) is failing with Error 1004, "Autofill Method of Range Class Failed.". Can anyone tell me how to fix it?
Dim src As Range, out As Range, wks As Worksheet
Set wks = Me
Set out = wks.Range("B:U")
Set src = wks.Range("A6")
src.AutoFill Destination:=out
(note: I have Googled, etc. for this. It comes up fairly often, but all of the responses that I saw had to do with malformed range addresses, which AFAIK is not my problem.
At someone's suggestion I tried replacing the autofill line with the following:
src.Copy out
This had the effect of throwing my Excel session into an apparent infinite loop consuming 100% CPU and then just hanging forever.
OK, apparently the source has to be part of the destination range for autofill. So my code now looks like this:
Dim src As Range, out As Range, wks As Worksheet
Set wks = Me
Set out = wks.Range("B1")
Set src = wks.Range("A6")
src.Copy out
Set out = wks.Range("B:U")
Set src = wks.Range("B1")
src.AutoFill Destination:=out, Type:=xlFillCopy
Same error on the last line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
来自 MSDN:
B:U
不包含A6
,因此存在错误。我相信您可能希望将out
设置为A6:U6
。仅指定列名称意味着您想要填充该列中的每一行,这不太可能是所需的行为
更新
进一步按照下面的OP评论并更新到原始答案,这可能会成功:
自动填充
一次被限制在一个方向(即水平或垂直)。要从单个单元格填充二维区域,您首先必须沿着该区域的一个边缘自动填充一条线,然后将该线延伸到该区域对于复制格式和清除内容的特定情况(通过源单元格为空),这样更好:
From MSDN:
B:U
does not containA6
and thus there is an error. I believe that you probably wantout
to be set toA6:U6
.Specifiying just the column name means that you want to fill every row in that column which is unlikely to be the desired behvaiour
Update
Further to the OP's comment below and update to the original answer, this might do the trick:
AutoFill
is constrained to a single direction (i.e. horizontal or vertical) at once. To fill a two-dimensional area from a single cell you first have to auto-fill a line along one edge of that area and then stretch that line across the areaFor the specific case of copying the formatting and clearing the contents (by virtue of the source cell being empty), this is better:
要使
AutoFill
正常工作,您需要使AutoFill
的范围大于源范围。如果自动填充范围与源范围相同,则该范围内没有任何内容可自动填充,因此您会收到错误因此,使自动填充范围大于源范围,错误就会消失。
To make
AutoFill
work, you need to make the range ofAutoFill
more than the source range. If the AutoFill range is same as of Source range then there is nothing to AutoFill in that range and hence you would get an errorSo make AutoFill range more than the source range and error will gone.
如果您想自动填充,只需执行以下操作...
这将自动填充到指定的范围。
这有帮助吗?
If you want to autofill you just do something like...
This would autofill down to the specified range.
Does ths help?
不确定这是否对任何人有帮助,但我需要类似的东西。选择单元格作为目标有效;
在我的示例中,我必须自动生成从 OA100 到 OA###? 的文件夹名称列表,这工作得很好。
Not sure if this helps anyone, but I needed something similar. Selecting the cells as destination works;
in my example I had to auto-generate a list of folder names from OA100 to OA###?, and this worked fine.