I want to have a MsgBox pop up with a list of names that have missing info (either phone number or address). So far I have:
Dim missing As String
Do While Cells(i, 1).Value <> ""
If StrComp(Cells(i, 1), "Need address") = 0 Then missing = Cells(i - 2, 1)
Loop
MsgBox missing
The spreadsheet is formatted to have all client info in Column A in the order of:
Name
Phone Number
Address
So far, I just a 1004 Runtime Error
i?