Formatting Range: Font : Range Format « Excel « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Excel
- Range Format
Formatting Range: Font
Sub InsertHeader()
Range("A1:C1").Select
With Selection.Font
.Name = "Arial"
.FontStyle = "Bold"
.Size = 14
End With
End Sub
Related examples in the same category