Sheets, Cells (Excel VBAのみ)

|

'Excel VBA ONLY

Sub test()

    '指定したシートの指定したセルに値を設定する
    Sheets("sheet1").Cells(2, 1) = "こんにちは"

End Sub