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でヘッダーのフォントを変更する方法

Posted at

はじめに

VBAのヘッダーのフォントの指定方法が複雑で、変数化するときにちょっと悩んだので備忘録としてメモ

やること

中央のヘッダーのフォントを変更します。
指定フォント : 游明朝
サイズ : 24

ヘッダーの変更方法

Option Explicit

Const FONT_SIZE = "&24"
Const FONT_NAME = "&""游明朝"""

Sub main()
    Call ChangeCenterHeader(ActiveSheet, "けものフレンズ1400万再生おめでとう")
End Sub

Function ChangeCenterHeader(Worksheet As Worksheet, Text As String)
    Worksheet.PageSetup.CenterHeader = FONT_NAME & FONT_SIZE & Text
End Function

結果

image.png

余談

太字とか他のフォントを設定したいときは、公式リファレンスを参考にするとよい

Const BOLD = "&B"

Function ChangeCenterHeader(Worksheet As Worksheet, Text As String)
    Worksheet.PageSetup.CenterHeader = FONT_NAME & FONT_SIZE & BOLD & Text
End Function

以上

参考

ヘッダーとフッターに指定できる書式コードと VBA コード - Office VBA リファレンス
Excel VBAでヘッダーのフォント種別・文字サイズを設定する

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?