0
0

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 3 years have passed since last update.

[VBA]Excelのウィンドウを瞬時に整列させるマクロ

Last updated at Posted at 2021-05-04

[0]はじめに

Zitanです。
複数のExcelファイルを同時に操作するとき、ディスプレイ画面上に左右にきれいに整列させたい時はありませんか?
今回は、複数のExcelウインドウを瞬時に整列させるコードをご紹介します。

[1]これを使う

筆者がよく使うのはこちらです。

左右に整列させる
Sub 左右に整列()
Application.Windows.Arrange xlArrangeStyleVertical
End Sub

その他の整列方法

引数 結果
xlArrangeStyleVertical 左右に並べて表示
xlArrangeStyleHorizontal 上下に並べて表示
xlArrangeStyleTiled 並べて表示(デフォルト)
xlArrangeStyleCascade 重ねて表示

[2]結果はこんな感じです

Excelのウインドウを適当に4つ開いておいて、マクロを実行しました。
Image from Gyazo

[3]さいごに

いかがでしょうか。
いくつ起動していてもきれいにピシッと整列するのが癖になりそうです。笑

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?