|
りんご3 さん
Kein さん
こんにちは
kein さん
後ろから失礼します。お許し下さい。
範囲が狭いので総当りではどうでしょうか?
勘違いならすいません。
Sub Test()
Dim myR As Range
Dim myH As Boolean
Dim myS As Boolean
Dim i As Variant
myH = True
myS = True
With Worksheets("Sheet1")
Set myR = .Range("C13:C27")
For Each i In myR
If i.Value <> "" And i.Offset(0, 5).Value = "" Then
myH = False
End If
If i.Value = "" And i.Offset(0, 5).Value <> "" Then
myS = False
End If
Next
If myS = False Then
MsgBox "C列未入力"
End If
If myH = False Then
MsgBox "H列未入力"
End If
If myS = True And myH = True Then
MsgBox "入力OK"
End If
End With
Set myR = Nothing
End Sub
keinさん失礼しました。
|
|