I'm writing a report that needs a field for either a business name (parcel.entity), or if that is blank then a first name and last name (parcel.[first name] parcel.[last name].
Sort of like an If/Else If/Else If/Else statement in Crystal syntax (Crystal syntax is the only one I'm familiar with).
Thanks!
Expression Question
Expression Question
Code: Select all
{IIF(parcel.entity != string.Empty, parcel.entity, parcel.[first name] + " " + parcel.[last name])}
Expression Question
Thanks-I appreciate it!