I need to display a default text value in Crystal Reports whenever a certain field is null in the recordset and I can't seem to figure out how. Thanks in advance.
-Jack Vinitsky
Printable View
I need to display a default text value in Crystal Reports whenever a certain field is null in the recordset and I can't seem to figure out how. Thanks in advance.
-Jack Vinitsky
If you use a formula field you can check a field value:
Hope this helpsCode:if length({table.field})>0 then table.field else "Default Value"