Hi
As I said in my earlier post, Crystal is not a case sensitve, If your database is case sensitive then when you compare
If "VALUE" = "value" (where "value" is coming from your database field) then it says false. In this case you need to modify your formula as
If "VALUE" = UCASE("value") this will display true
Hope the above is clear..