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

VBAでR1C1表示形式とA1表示形式を切り替える方法

Last updated at Posted at 2015-05-20

vbaで大量のエクセルブックの表示形式をA1形式に統一する必要があったので
その時の備忘録。

Function changeViewStyle(sheetobj As Worksheet)
    If (Application.ReferenceStyle = xlR1C1) Then
        Application.ReferenceStyle = xlA1
    ElseIf (Application.ReferenceStyle = xlA1) Then
        Application.ReferenceStyle = xlR1C1
    End If
End Function
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?