Page 1 of 1

Expression Question

Posted: Wed Jun 16, 2010 2:45 pm
by MikeC
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

Posted: Wed Jun 16, 2010 4:18 pm
by Brendan

Code: Select all

{IIF(parcel.entity != string.Empty, parcel.entity, parcel.[first name] + " " + parcel.[last name])}

Expression Question

Posted: Thu Jun 17, 2010 9:04 am
by MikeC
Thanks-I appreciate it!