我想添加一个公式到一个单元格,然后自动填充所有的方式下降到lr。
目前我正在使用:
lr = Cells.Find("*", Cells(1,1), xlFormulas, xlPart, xlByRows, xlPrevious, False).Row
Dim header as range
Set header = range("A1:AA1")
' The Group column has empty cells. It just has header as Group.
' This code finds the column header Group for me and puts formula in 1 cell under it. This part is fine.
header.Find("Group").Offset(1,0).FormulaR1C1 = "=left(rc[-1],4)"
' Now I need to autofill that formula all the way down to lr
' I'm currently using this
header.Find("Group").Offset(1,0).Autofill Range ("B2:B" & lr)
我不想使用“B2:B”作为集团列可以在任何其他地方。我希望它是更动态。
是否有办法更改“B2:B”,使其查找Group header并自动填充1个单元格,直至lr?
1条答案
按热度按时间krcsximq1#
在标题下方填充