「合計サービス料金」セルの上にある列 G:26 から 1 の合計を取得しようとしています。実行時エラー「1004」が発生しています。アプリケーション定義またはオブジェクト定義のエラー。これが何であるか知っている人はいますか?
Worksheets(1).Select
Dim rng1 As Range
Dim strSearch As String
strSearch = "Total Service Fees"
Set rng1 = Range("F15:F100").Find(strSearch, , xlValues, xlWhole)
If Not rng1 Is Nothing Then
rng1.Offset(0, 1).Select
ActiveCell.Formula = "=SUM(G26:" & ActiveCell.Offset(-1, 0).Select & ")"
Else
MsgBox strSearch & " not found"
End If
正しい答えが得られますが、それでもこのエラーが発生します。