vote up 0 vote down star
1

There are hints of the answer to this question here and there on this site, but I'm asking a slightly different answer.

Where does Crystal Reports document that this syntax does not work?

Trim({PatientProfile.First}) + " "
    + Trim(Iif(
        IsNull({PatientProfile.Middle}) 
        , Trim({PatientProfile.Middle}) + " "
        , " "
        )
    )  
+ Trim({PatientProfile.Last})

I know the solution is

If IsNull({PatientProfile.Middle}) Then
    Trim({PatientProfile.First})
        + " " + Trim({PatientProfile.Last})
Else
    Trim({PatientProfile.First})
       + " " + Trim({PatientProfile.Middle})
       + " " + Trim({PatientProfile.Last})

but how are we supposed to figure out we can't use the first version?

The documentation for IsNull says

  • Evaluates the field specified in the current record and returns TRUE if the field contains a null value

and Iif gives

  • [Returns] truePart if expression is True and falsePart if expression is False. The type of the returned value is the same as the type of truePart and falsePart.

I suppose if you stare at that line about "type of the return value" you can get it, but...

flag

67% accept rate
I don't have CRXI handy today, but what doesn't work about the first one? Does it just get the spacing wrong (which is a logic error in the code - you have an extra Trim() in there) or does it fail in some other way? – Stobor Feb 10 at 22:58
For records where .Middle is NULL, CR can't evaluate the string value in Trim(.Middle), and decides the value of the Iif is NULL, even though I have that explicit test in there. – SarekOfVulcan Mar 4 at 17:30

1 Answer

vote up 0 vote down

I think CR evaluates both IIFs true and false parts. Because you have "Trim({PatientProfile.Middle})" part there, which will be evaluated aganst null value, CR formula evaluator seems just fail.

link|flag
Yes, but I'm trying to figure out where in the bloody documentation it says this, instead of making everyone who runs into it Google for the answer. After all, one or two of us know how code is supposed to work... – SarekOfVulcan Mar 4 at 17:31
From CR help: Every argument of the IIF function is evaluated before the result is returned. Thus, you should watch out for undesirable side effects when using IIF. For example, if falsePart results in division by zero, an error will occur, even if expression is True and so truePart is returned. – Arvo Mar 4 at 22:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.