Excel VBA質問箱 IV

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

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


63127 / 76732 ←次へ | 前へ→

【18204】Re:変数の値について
回答  禰宜  - 04/9/17(金) 23:44 -

引用なし
パスワード
   ▼もも さん:

>Sub chartsmente()
>
>Dim mySht As Worksheet
>Dim i As Integer
>Dim c As Integer
>  i = 1
>  C = 1
> For Each mySht In Worksheets
>  If mySht.Name <> "基本データ" Then
>   mySht.Select
>
>   Do While Cells(3 + i, "O").Value <> ""
>    If mySht.Cells(3 + i, "O").Value > Cells(3 + i, "P").Value Then
>     Charts(c).Select
>     ActiveChart.SeriesCollection(1).Points(i).Select
>     With Selection.Interior
>      .ColorIndex = 3
>     End With
>    End If
>    i = i + 1
>   Loop
>  End If
>  C = C + 1
> Next
>End Sub

禰宜と申します。

>シートが変わるたびに、変数iが「1」から始まるようにする

シートが変わるということは、
>For Each mySht In Worksheets でmyShtが参照する値が変わった時
ということでしょうから、
変数iの初期化をFor文の中に入れてしまえば良いのではないでしょうか。

Sub chartsmente()

Dim mySht As Worksheet
Dim i As Integer
Dim c As Integer
 C = 1
 For Each mySht In Worksheets
  i = 1
  If mySht.Name <> "基本データ" Then
   mySht.Select

   Do While Cells(3 + i, "O").Value <> ""
    If mySht.Cells(3 + i, "O").Value > Cells(3 + i, "P").Value Then
     Charts(c).Select
     ActiveChart.SeriesCollection(1).Points(i).Select
     With Selection.Interior
      .ColorIndex = 3
     End With
    End If
    i = i + 1
   Loop
  End If
  C = C + 1
 Next
End Sub

0 hits

【18202】変数の値について もも 04/9/17(金) 23:09 質問
【18203】Re:変数の値について かみちゃん 04/9/17(金) 23:43 回答
【18204】Re:変数の値について 禰宜 04/9/17(金) 23:44 回答
【18205】Re:変数の値について つん 04/9/17(金) 23:44 回答
【18206】Re:変数の値について もも 04/9/18(土) 0:17 お礼
【18353】Re:変数の値について もも 04/9/21(火) 20:41 質問
【18360】Re:変数の値について Kein 04/9/22(水) 5:58 回答
【18361】Re:変数の値について Kein 04/9/22(水) 6:15 回答
【18412】Re:変数の値について もも 04/9/22(水) 20:44 お礼

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