How would I write "If x cannot be evenly divided by 3, and x is not 0 then..."

I know how to write if x cannot be divided evenly by 3

[code]
If x Mod 3 = 0 Then
x = x + 1
End If
[code]

but how would i write the and x is not equal to 0?