Font.Color (Excel VBAのみ)

|

'Excel VBA ONLY!

Sub test()

    'セルの文字の色の変更
    Sheets("sheet1").Cells(2, 1).Font.Color = vbRed   '赤

End Sub