动态范围内及以上的自动填充

发布于 2025-01-19 06:46:36 字数 731 浏览 0 评论 0原文

我想在动态范围内自动填充单元。

我在第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.

enter image description here

I do this by copying A2 and pasting into C2 then dragging across

enter image description here

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 技术交流群。

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

发布评论

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

评论(1

野の 2025-01-26 06:46:37

你可以这样做:

With ActiveSheet
    .Range("C3", .Cells(3, Columns.Count).End(xlToLeft)).Offset(-1).Value = .Range("A2").Value
End With

You could do it like this:

With ActiveSheet
    .Range("C3", .Cells(3, Columns.Count).End(xlToLeft)).Offset(-1).Value = .Range("A2").Value
End With
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文