- ベストアンサー
Excel VBA等での処理方法
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
質問提示のレイアウトでのコードです。 違ったら適宜修正のこと。 '--------------------------------- Sub test() Dim R As Long Dim R2 As Long R2 = 1 For R = 2 To Cells(Rows.Count, "B").End(xlUp).Row Step 2 R2 = R2 + 1 Cells(R2, "E").Value = Cells(R, "A").Value Cells(R2, "F").Value = Cells(R, "B").Value Cells(R2, "G").Value = Cells(R + 1, "B").Value Next R End Sub '----------------------------------- 以上です。