さまざまなサイズの複数のシートを含むワークブックがあります。最後の行の後に合計列を追加し、数式をすべての列にコピーしたいと考えています。最後の行と列を定義し、数式は正しい場所に期待どおりに表示されますが、入力しようとするとエラーが発生します。塗りつぶしのために両方の動的セルを正しく参照するにはどうすればよいですか? 今のところテスト用に 1 枚のシートを使用していますが、最終的にはブック内のすべてのシートをループする予定です。
Sub Addtotals()
Dim Bord As Worksheet
Dim LRow As Long
Dim LCol As Long
Dim frmcell As Range
Set Bord = Sheets("Borders")
With Bord
'--> Define last rows and columns
LRow = .Range("A" & Rows.Count).End(xlUp).Row
LCol = .Range("A" & Columns.Count).End(xlToLeft).Column
'--> Add Total text to first column
.Range("A" & LRow).Offset(1, 0).Select
ActiveCell = "Total"
'--> Add formula to next column
Set frmcell = Range("B" & LRow + 1)
frmcell.Formula = "=sum(B2:B" & LRow & ")"
'--> Fill formula across range
frmcell.Select
Selection.AutoFill Destination:=Range(frmcell & LCol), Type:=xlFillDefault
End With
End Sub
ありがとう :)