Jul 24, 2001 #1 yngwie Technical User Feb 7, 2003 5 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 Mar 13, 2001 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})