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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suppress if Null possible? 1

Status
Not open for further replies.

TechUser23

IS-IT--Management
Mar 8, 2007
28
US
Two Fields:

Phone1
Phone1Type

I put a text box into my report and put in Phone1 then a "(" and then Phone1Type then a ")"

If the report is null its just putting a "()" in my report ... can I suppress if Null somehow?
 
Create a formula instead of using a text box:

if isnull({table.phone1}) then "" else
if isnull({table.phonetype}) then
{table.phone1} else
{table.phone1}+"( "+{table.phonetype}+")"

-LB
 
You saved me again ... you need to write a book with all your knowledge. Its amazing! Thanks a million ... saved my day.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top