Jul 24, 2001 #1 yngwie Technical User Joined Feb 7, 2003 Messages 5 Location DE I want to display "No comment" if a data field is null on the report, instead of just nothing. Can this be done.
I want to display "No comment" if a data field is null on the report, instead of just nothing. Can this be done.
Jul 24, 2001 #2 jjames Programmer Joined Mar 13, 2001 Messages 212 In a formula field add the following... If IsNull({YourDataField}) then 'No Comment' else {YourDataField} If yourdatafield is not a string type then you will have convert it to a string like If IsNull({YourDataField}) then 'No Comment' else ToText({YourDataField}) Upvote 0 Downvote
In a formula field add the following... If IsNull({YourDataField}) then 'No Comment' else {YourDataField} If yourdatafield is not a string type then you will have convert it to a string like If IsNull({YourDataField}) then 'No Comment' else ToText({YourDataField})