Scroller52
Technical User
i'm using CR XI release 2 on a SQL DB.
for a field 'termination date', if the field is null, then i would like crystal to say "N/A" else 'termination date'
so my formula is this:
if isnull({Position.Termination Date}) then "N/A"
else {Position.Termination Date}
but i get an error saying that the else should return a string. i'm guessing that since the N/A is a string, and the termination date is a date field, there are data type complications. is there a way to get around this?
for a field 'termination date', if the field is null, then i would like crystal to say "N/A" else 'termination date'
so my formula is this:
if isnull({Position.Termination Date}) then "N/A"
else {Position.Termination Date}
but i get an error saying that the else should return a string. i'm guessing that since the N/A is a string, and the termination date is a date field, there are data type complications. is there a way to get around this?