Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


27497 / 76732 ←次へ | 前へ→

【54554】Re:マクロを短くしたい
発言  かみちゃん  - 08/3/19(水) 0:08 -

引用なし
パスワード
   こんにちは。かみちゃん です。

>行のデータを表に表示をしています。

For 〜 Next による繰り返し処理を使います。
具体的には、以下のような感じに工夫します。

もしかしたら、もっと短くなるかもしれませんが、「マクロ初心者」ということですので、
あまり難しいことは書かないでおきます。

Sub Sample()
 Dim ws1 As Worksheet
 Dim ws2 As Worksheet
 Dim lngRow As Long
 
 Set ws1 = Sheets("一覧")
 Set ws2 = Sheets("印刷")
 
 With ws1
  '照会データ
  .Cells(1, 4).Value = ws2.Cells(6, 4).Value
  .Cells(43, 5).Value = ws2.Cells(6, 5).Value
  .Cells(43, 8).Value = ws2.Cells(6, 6).Value
  .Cells(1, 15).Value = ws2.Cells(6, 8).Value
  .Cells(44, 6).Value = ws2.Cells(6, 9).Value
  .Cells(1, 10).Value = ws2.Cells(6, 10).Value
  .Cells(2, 18).Value = ws2.Cells(6, 28).Value
  .Cells(2, 16).Value = ws2.Cells(6, 28).Value
  .Cells(1, 8).Value = ws2.Cells(6, 41).Value

  For lngRow = 6 To 15
   .Cells(lngRow * 2 - 9, 6).Value = ws2.Cells(lngRow, 2).Value
   .Cells(lngRow * 2 - 9, 7).Value = ws2.Cells(lngRow, 3).Value
   .Cells(lngRow * 2 - 9, 2).Value = ws2.Cells(lngRow, 14).Value
   .Cells(lngRow * 2 - 9, 11).Value = ws2.Cells(lngRow, 26).Value
   .Cells(lngRow * 2 - 9, 16).Value = ws2.Cells(lngRow, 29).Value
   .Cells(lngRow * 2 - 9, 17).Value = ws2.Cells(lngRow, 30).Value
   .Cells(lngRow * 2 - 9, 19).Value = ws2.Cells(lngRow, 31).Value
   .Cells(lngRow * 2 - 9, 12).Value = ws2.Cells(lngRow, 32).Value
   .Cells(lngRow * 2 - 9, 13).Value = ws2.Cells(lngRow, 33).Value
   .Cells(lngRow * 2 - 9, 15).Value = ws2.Cells(lngRow, 34).Value
   .Cells(lngRow * 2 - 9, 8).Value = ws2.Cells(lngRow, 36).Value
   .Cells(lngRow * 2 - 8, 8).Value = ws2.Cells(lngRow, 38).Value
   .Cells(lngRow * 2 - 9, 9).Value = ws2.Cells(lngRow, 39).Value
   .Cells(lngRow * 2 - 8, 9).Value = ws2.Cells(lngRow, 41).Value
   .Cells(lngRow * 2 - 9, 10).Value = ws2.Cells(lngRow, 42).Value
  Next
 End With
End Sub
1 hits

【54553】マクロを短くしたい わんわん 08/3/18(火) 23:40 質問
【54554】Re:マクロを短くしたい かみちゃん 08/3/19(水) 0:08 発言
【54556】Re:マクロを短くしたい わんわん 08/3/19(水) 0:58 お礼
【54555】Re:マクロを短くしたい おちゃら 08/3/19(水) 0:26 発言
【54557】Re:マクロを短くしたい わんわん 08/3/19(水) 1:14 質問
【54558】Re:マクロを短くしたい かみちゃん 08/3/19(水) 1:44 発言
【54573】Re:マクロを短くしたい わんわん 08/3/20(木) 0:20 お礼
【54576】Re:マクロを短くしたい VBWASURETA 08/3/21(金) 12:36 発言
【54584】Re:マクロを短くしたい わんわん 08/3/22(土) 0:55 お礼
【54592】Re:マクロを短くしたい VBWASURETA 08/3/22(土) 18:15 発言
【54596】Re:マクロを短くしたい わんわん 08/3/22(土) 20:57 質問
【54598】Re:マクロを短くしたい neptune 08/3/22(土) 21:20 発言
【54599】Re:マクロを短くしたい わんわん 08/3/23(日) 1:42 お礼
【54602】Re:マクロを短くしたい neptune 08/3/23(日) 15:21 回答
【54605】Re:マクロを短くしたい わんわん 08/3/23(日) 23:36 お礼
【54609】Re:マクロを短くしたい VBWASURETA 08/3/24(月) 9:55 発言
【54678】Re:マクロを短くしたい わんわん 08/3/25(火) 23:45 お礼

27497 / 76732 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free