I cant see what the issue is with this if Not statement, it continues the IF statement even though it shouldnt. right??
b = "Just Listed"
If Not InStr(1, b, "Listed", 1) Then
msgbox "Not New"
End If
Loop
b = "Just Listed"
If Not InStr(1, b, "Listed", 1) Then
msgbox "Not New"
End If
Loop