yes, always use is not TRUE
AHAH now it works - thank you all - I feel a bit daft now !
Yes, thatās what I meant.
Davidās point was that there could be three states for a boolean:
-
Empty (when you start with a completely new boolean column it may have not been assigned any values)
-
False (when you have pre-assigned a false or switch from true to false)
-
True (when you have pre-assigned a true or switch from false to true)
In your case, your column value seems like an empty rather than a false, hence use is not true instead of false to cover both bases.
ā¦unless of course, you clear it
Well donāt clear it.
hehe⦠actually, I do - all the time.
Iāve gotten into the habit of clearing my booleans instead of setting them to false.
So I basically ignore the false state and just check for true/not true.
I do - every single word - the same