LoginSignup
0
1

More than 1 year has passed since last update.

Excelですべてのシートのカーソルを"A1"に揃えるマクロ

Last updated at Posted at 2022-04-27

提出前の整形にご使用ください。

Sub CursorA1()
'
' CursorA1 Macro
'
    Dim Ws As Worksheet
    For Each Ws In Worksheets
        Ws.Activate
        Range("A1").Select
    Next Ws
    Worksheets(1).Activate
    ActiveWorkbook.Save
End Sub
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