VBA For~Next
こんにちは
上手く 説明できるか心配なのですが
下記のテスト1ですと 36行毎に
Targetが A4,A40,A76,A112だと
A1,A437,A73,A109.Value = "" Then ComboBox3.DropDownさせてから
ComboBox4.DropDownさせてますが
A1,A437,A73,A109にValue が入っていると
A4,A40,A76,A112のCellをActiveしても ComboBox4.DropDown しません。
そこで、テスト2のように For~Nextを二つに分けました。
テスト2の方法しか無いのでしょうか?
宜しくお願いします。
Dim Row As Long 'テスト1
For Row = 4 To 112 Step 36
If Not Intersect(Target, Cells(Row, "A")) Is Nothing Then '今日の日付DropDown
If Cells(Row - 3, "A").Value = "" Then form.ComboBox3.DropDown
ElseIf Not Intersect(Target, Range(Cells(Row, "A"), Cells(Row + 13, "A"))) Is Nothing Then 'A列日付
form.ComboBox4.DropDown
End If
Next
Dim Row As Long, iRow As Long 'テスト2
For Row = 4 To 112 Step 36
If Not Intersect(Target, Cells(Row, "A")) Is Nothing Then '今日の日付DropDown
If Cells(Row - 3, "A").Value = "" Then form.ComboBox3.DropDown
End If
Next
For iRow = 4 To 112 Step 36
If Not Intersect(Target, Range(Cells(iRow, "A"), Cells(iRow + 13, "A"))) Is Nothing Then 'A列日付
form.ComboBox4.DropDown
End If
Next
お礼
回答ありがとうございました チェック入れなおしで治りました 助かりました