NOt sure what you want but to compare two strings:
Code:
Dim strOne As String
Dim strTwo As String

If strOne = strTwo Then
    MsgBox "Strings Are Identical"
Else
    MsgBox "Strings Are Different"
End if
Going back to your code: what does it say??? (especially the Car Can't = "0" part makes me confused)