Cannot convert the value "Not a boolean" to a boolean
Sample code
<cfset notABoolean = "Not a boolean">
<cfif notABoolean>
<!--- Logic here --->
</cfif>
<cfif notABoolean>
<!--- Logic here --->
</cfif>
Explanation
The sample code is attempting to use the string "Not a boolean" in a place that expects something that will evaluate to true of false.
Submitted by Adrian Lynch on Wednesday 12 November 2008

Posted by Adrian Lynch on Friday 14 November 2008
<cfif myQuery.myColumn>
If it returns a null, an empty string when you attempt to use in in such a fashion, the logic will fail.
A way around this is to use:
<cfif Val(myQuery.myColumn)>
Which will replace an empty string with a zero.