Hey together,
I just ran into an interesting mistake I just made and am a bit confused about it.
Typed "=!" instead of "!="
Mod(10,3)!=0 -> TRUE
Mod(10,3)=!0 -> FALSE
What is happening when I type "=!"?
Thought this would make "equals NOT-zero" instead of "NOT-equals zero", which is logically the same thing, but thats, not the case.