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

Convert Field display into different text

Status
Not open for further replies.

juli5e

Technical User
Apr 26, 2002
10
0
0
US
What would be the best way to convert a field display, ie. "standard" into "std"? For example:
if I have fields that contain text "standard", "mfg hold", and "cancel" and I want them to show as "std", "hold", and "c", how would I do this?
 
You would write a formula field that sais:

IF {field} = "Standard" then "Std" else
IF {field} = "mfg hold" then "hold" else ...
Ken Hamady, On-site Custom Crystal Reports Training & Consulting
Public classes and individual training.
Guide to using Crystal in VB
tek@kenhamady.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top