Well there is a bug in dgillz's formula:
{Fieldname}="false" or IsNull({Fieldname})
the Test for Isnull should always come first. Crystal evaluates left to right so it will choke on the formula when has a null value. If this formula is to work then it would have to be:
(IsNull({Fieldname})or {Fieldname}="false" )
But I am a bit confused...is this a boolean field or are the values in the field string values "True", "False"
And are the other values Null or a Blank string of some number of spaces.
IF the answer is Boolean and null then the formula should be:
(IsNull({Fieldname}) or {Fieldname}= False)
If the answer is string and Blank spaces then the formula should be:
(length(trim({Fieldname})) = 0 or
uppercase({Fieldname}) = "FALSE"
If the answer is string or Blank spaces or Null then the formula should be:
(IsNull({Fieldname}) or length(trim({Fieldname})) = 0 or
uppercase({Fieldname}) = "FALSE"
take your pick....hope this helps....Jim