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

Formatting

Status
Not open for further replies.

296097

Programmer
Aug 13, 2004
32
US
I am using CR 8.5 and the only thing i need here is to get rid of 000/000-0000 from my report and replace it with a balnk space.it really looks ugly and unprofessional.by the way this field is embeded in the text box.thank you for the help
 
Assuming that this field is a field from a table, try using a formula instead using:

If {table.field} = "000/000-0000" then
" "
else
{table.field}

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top