0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Excel VBA フィルダウンをコードで書くと

Posted at

#使い道
Excelで1つのセルに関数を書いたのちに、
対象の行分フィルダウンすることありますよね?
(フィルダウンすると勝手に関数の中の行番号や、列名が変わってくれるやつ)

VBAでは.copyをして、.pasyをする手ももちろんありますが、
実は1つのメソッドで書けるのだ。

#メソッド
Range("A1:Z1").AutoFill Destination:=Range("A1:Z10")

最初の"A1:Z1"がフィルダウンしたいセル群。
最後の"A1:Z10"がフィルしたい範囲
最初に選択した部分も範囲に含めることがポイント
※含めないとエラーになります。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?