Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードが間違っているのはなぜですか?
Sub SetFont() Dim a1 As Range Set a1 = Range("a1") SetFontSize (a1) End Sub Sub SetFontSize(target As Range) target.Font.Size = 11 End Sub
メソッドを呼び出すと、「実行時エラー424:オブジェクトが必要です」というエラーが発生しますSetFontSize。
SetFontSize
関数を呼び出すのではなく、を呼び出すときに括弧は必要ありませんSetFontSize (a1)。
SetFontSize (a1)
使用するだけです:
SetFontSize a1