我有一个包含以下内容的VBA代码。
Selection.AutoFill Destination:=Range("H2:J2002")
当它具有完全2002年的条目时,这可以选择直到J列中的最后一个条目。我想要的是一般的,可以在H2和J列的最后一个条目之间进行选择。我找到了以下
Lastrow = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
但我不理解,我如何使用Lastrow的值来选择第J列中的最后一个单元格。
答案 0 :(得分:0)
Lastrow = ActiveSheet.Cells(Rows.Count, 10).End(xlUp).Row
'lastrow now holds last occupied cell in column 10 ie J
Selection.AutoFill Destination:=Range("H2:J" & lastrow)