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.
このコードが見つかった場合:
ActiveCell.Offset(-5, -1).Range("A1:E1").Cut Destination:=ActiveCell.Range( _ "A1:E1")
「:=」に関する参照が見つかりません。どういう意味ですか?
:=名前付き引数とともに使用されます。この場合、 Destinationはメソッドの引数の名前で、Cut反対側はその値です。
:=
Destination
Cut
例については、 https://docs.microsoft.com/en-us/office/vba/language/concepts/getting-started/understanding-named-arguments-and-optional-argumentsを参照してください。