Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text Question

Status
Not open for further replies.

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.
 
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})





 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top