Hello All, Here is my macro that I would like to make work more accurately...
Sub Find_Missing_Data()
On Error Resume Next
Range("A:A").Find(What:="ADD", After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Select
MsgBox "No Missing Data Found."
End Sub
What I am having an issue with is that if there is an "ADD" in column A, the Message Box still comes up. I only want the message to activate if there really are no ADD's in column A. Just looking for some help on putting this together. Thank you, --Ben
Sub Find_Missing_Data()
On Error Resume Next
Range("A:A").Find(What:="ADD", After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Select
MsgBox "No Missing Data Found."
End Sub
What I am having an issue with is that if there is an "ADD" in column A, the Message Box still comes up. I only want the message to activate if there really are no ADD's in column A. Just looking for some help on putting this together. Thank you, --Ben