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

suppress text in detail section

Status
Not open for further replies.

jobillborf

Programmer
Feb 13, 2001
61
US
Hi I have a "&" (text) in the details section that I would like to suppress it the field Addrxtra.St2name is null.

Thank you
 
Ken Im sorry but it did not work. The & is text not a field. Thank you
 
Text can also be suppressed, right click and select format field->Common (Tab)->Suppress->X-2.

If you still have problems, just build a formula to contain the text and use:

@My&text
If isnull(Addrxtra.St2name)
""
else
"&"

And I'm Kai, not Ken, Ken's the olde timer here.

<flashin' a wicked lil grin at Ken>

-k kai@informeddatadecisions.com
 
BTW, if this is separating two fields, consider just building a formula to house both fields and the & text:

@My&text
If isnull({Addrxtra.St2name})
{Addrxtra.St1name}
else
{Addrxtra.St1name} + &quot;&&quot; + {Addrxtra.St2name}

-k kai@informeddatadecisions.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top