动态范围内及以上的自动填充
我想在动态范围内自动填充单元。
我在第3行中有一系列数字,并想将“客户编号”一词写入。在每个单元格中。
我这样做是通过复制A2并粘贴到C2中,然后拖动
=“ https://i.sstatic.net/smneq.png” alt =“在此处输入图像描述”>
通过VBA宏录音机,我所获得的代码看起来像是
Selection.Copy
Range("C2").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Selection.AutoFill Destination:=Range("C2:E2"), Type:=xlFillDefault
Range("C2:E2").Select
我想知道是否有一种创建一个方法由于第3行中的单元格数会不时变化,因此在动态范围内的自动填充范围会发生变化吗?
谢谢
I'd like to autofill cells across and above a dynamic range.
I have a line of numbers in row 3 and would like to put the word "Customer No." in the cell above each one.
I do this by copying A2 and pasting into C2 then dragging across
Via VBA macro recorder the code I get looks like this
Selection.Copy
Range("C2").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Selection.AutoFill Destination:=Range("C2:E2"), Type:=xlFillDefault
Range("C2:E2").Select
I was wondering if there's a way to create an autofill across a dynamic range as the number of cells in row 3 will change from time to time?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以这样做:
You could do it like this: