VBA 自动填充 - 单元格引用变量

Posted

技术标签:

【中文标题】VBA 自动填充 - 单元格引用变量【英文标题】:VBA AutoFill - Cell references variable 【发布时间】:2020-12-22 15:37:01 【问题描述】:

我正在尝试将 A 列中的最后一个单元格自动填充到 B 列中的最后一个单元格。

但是,每列的最后一个单元格是可变的。

以下是我当前的代码:

Sub Import()

'Select first empty cell in column B
    Sheets("Sheet1").Select
    Range("B1").End(xlDown).Offset(1, 0).Select

'Paste  Data
    ActiveSheet.Paste
    
'Allocate source_file to pasted data
    Range("A1").End(xlDown).Offset(1, 0).Select
    Application.CutCopyMode = False
    ActiveCell.FormulaR1C1 = "TEMP"

End Sub

我在 A 列中找到了第一个空单元格并输入了“TEMP”。我现在想将其填充到 B 列的最后一行。

任何帮助将不胜感激。

谢谢

【问题讨论】:

【参考方案1】:

应该这样做:

    Dim lastrowa As Long
    Dim lastrowb As Long
    
    With Sheet2
        lastrowa = .Cells(.Rows.Count, 1).End(xlUp).Row
        lastrowb = .Cells(.Rows.Count, 2).End(xlUp).Row
        
        .Cells(lastrowa + 1, 1).Value = "TEMP"
        .Cells(lastrowa + 1, 1).AutoFill .Range(.Cells(lastrowa + 1, 1), .Cells(lastrowb, 1))
    End With

【讨论】:

赞赏 Warcupine- 完美运行 :) 不幸的是不能投票,因为我的声誉不够高

以上是关于VBA 自动填充 - 单元格引用变量的主要内容,如果未能解决你的问题,请参考以下文章

如何使用不同的变量在 VBA 中自动填充范围

Excel vba 仅自动填充空单元格

在 Excel VBA 中对一系列单元格使用自动填充

VBA - 如何自动填充到底部,直到最后一个 B 单元格包含数据

使用excel VBA仅引用一个数字来自动填充日期

如何使用 VBA 根据活动工作表中的单元格自动填充 Excel 表单?