エクセル特定セルの文字入力

Sub 特定セルの文字入力()

‘ A1セルに「文字入力」を入力
Range(“A1”).Select
ActiveCell.FormulaR1C1 = “文字入力”

End Sub