Sub Macro1()
'
' Macro1 Macro
' マクロ記録日 : 1999/7/1 ユーザー名 : ちゅん
'
'
Range("B2").Select
ActiveCell.FormulaR1C1 = "あいうえお"
Range("B2").Select
Selection.Font.ColorIndex = 3
With Selection.Font
.Name = "MS Pゴシック"
.FontStyle = "太字"
.Size = 16
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
End With
End Sub |