I have an If statement that if it is true, I need the macro to stop so that the user can update a spreadsheet referenced in a vloopup so that they will not have any N/A's and resume after the user is finished. Is that possible?
Thanks everyone!!
Thanks everyone!!
Code:
On Error Resume Next
Selection.Find(What:="#N/A", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
ActiveCell.Select
If ActiveCell.Text = "#N/A" Then
Range("A1").Select
Selection.AutoFilter Field:=3, Criteria1:="#N/A"
MsgBox "Please Review N/A's"
End If