Formula (Excel VBA のみ)

|

'Excel VBA ONLY

Sub test()

    'セルの計算式を設定する
    Sheets("sheet1").Cells(8, 1).Formula = "=1+2+3"

End Sub