Excel VBA質問箱 IV

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

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


75537 / 76733 ←次へ | 前へ→

【5632】Re:通知したいのですが
回答  ハマゾウ E-MAILWEB  - 03/5/23(金) 0:53 -

引用なし
パスワード
   ▼koshimizu さん:
以下のコードをお試しください。
データシート名は"Sheet1"、出力シートは"Sheet2"としています。

Sub test()
  Dim Team As String
  Dim DataSheet As String
  Dim OutputSheet As String
  Dim i As Integer
  Dim j As Integer
  
  '初期設定
  DataSheet = "Sheet1"
  OutputSheet = "Sheet2"
  Sheets(OutputSheet).Cells.ClearContents
  Sheets(OutputSheet).Cells(1, 1) = "番号"
  Sheets(OutputSheet).Cells(1, 2) = "スポーツ"
  Sheets(OutputSheet).Cells(1, 3) = "氏名"
  Sheets(OutputSheet).Cells(1, 4) = "ランク"
  
  Team = InputBox("チーム名の入力")
  i = 1
  j = 2
  Do
    i = i + 1
    If Sheets(DataSheet).Cells(i, 2) = "" Then Exit Do
    If Sheets(DataSheet).Cells(i, 7) = Team Then
      Sheets(OutputSheet).Cells(j, 1) = Sheets(DataSheet).Cells(i, 2)
      Sheets(OutputSheet).Cells(j, 2) = Sheets(DataSheet).Cells(i, 3)
      Sheets(OutputSheet).Cells(j, 3) = Sheets(DataSheet).Cells(i, 4)
      Sheets(OutputSheet).Cells(j, 4) = Sheets(DataSheet).Cells(i, 20)
      j = j + 1
    End If
  Loop
  Sheets(OutputSheet).Select
  
End Sub

1 hits

【5624】通知したいのですが koshimizu 03/5/22(木) 15:35 質問
【5632】Re:通知したいのですが ハマゾウ 03/5/23(金) 0:53 回答
【5633】Re:通知したいのですが Kein 03/5/23(金) 2:17 回答

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