我有这个代码
Sheets(“CE”). Select
Range(“L2:T2”). Select
Selection. Auto fill destination: =range(“L2:T83”)
我想将范围更改为列A的任何内容。它应该是灵活的并且可以自动调节。
Selection. Auto fill destination: =range(“L2:T83”)
答案 0 :(得分:0)
如果A列中没有空单元格,则应该可以正常工作。
Dim lRow As Long
lRow = Range("A1").End(xlDown).Row
Sheets("CE").Range("L2:T2").AutoFill Destination:=Range("L2:T" & lRow)