I am having an issue with the Case vbNo where I am trying to find the next "c" in the rangename "R_Names". I can find the first item but if it is not what I'm looking for I want to select the "NO" button from the message box which will then bring be to the next "c" and etc..
Var1 = ActiveCell
Do Until IsEmpty(ActiveCell)
With ThisWorkbook.Sheets("Unique_Users").Range("R_Names ")
Set c = .Find(Var1, LookIn:=xlValues, LookAt _
:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _
True, SearchFormat:=False)
If Not c Is Nothing Then
intResult = MsgBox(c.Offset(0, -2).Value & Chr(13) & _
c.Offset(0, -1).Value & Chr(13) & _
c.Offset(0, 0).Value, vbYesNoCancel + vbQuestion)
Select Case intResult
Case vbYes
ActiveCell.Offset(0, 2) = c.Offset(0, -2).Value
ActiveCell.Offset(0, 3) = c.Offset(0, -1).Value
ActiveCell.Offset(0, 4) = c.Offset(0, 0).Value
Case vbNo
Set c = .FindNextŠ
Case vbCancel
End
End Select
End If
End With
ActiveCell.Offset(1, 0).Select
Var1 = ActiveCell
Loop
Any assistance would be appreciated.
John



