Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
マクロを実行すると、シート 1 A3 からセル値がコピーされ、シート 2 A3 に貼り付けられます。もう一度次のボタンをクリックすると、A4 値がコピーされ、シート 2 A3 セルに貼り付けられます。
たとえば、 Sheet1 A1 = 3 のようにイテレータをセルに配置し、それを使用してコピーした値を配置する場所を選択できます
Sub sample() 'This is your iterator x = Range("A1") Value = Worksheets("Sheet1").Cells(x, 1) Worksheets("Sheet2").Range("A3") = Value Range("A1") = Range("A1") + 1 End Sub