数式バーの表示・非表示
数式バーを非表示にしたり、表示したりする方法を紹介します(^o^)
DisplayFormulaBarプロパティ
数式バーを非表示にしたり、表示したりする場合は、対象のApplicationオブジェクトのDisplayFormulaBarプロパティの値を設定します。
Trueが表示(最初はこれ)でFalseが非表示になります!
Sub sample()
'非表示にする
Application.DisplayFormulaBar = False
'表示する
Application.DisplayFormulaBar = True
End Sub
簡単ですね(^o^)
コメント