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

CAN YOU EXPORT A PIPE DELIMITED FILE FROM CRXI?

Status
Not open for further replies.

deborahyr

Technical User
Nov 14, 2002
63
0
0
US
Using Crystal Report XI, can I create a pipe delimited file?
 
You should be able to do it by creating a text formula similar to this:
//formula: MyData
Trim({Table.TextField1}) + "|" +
Trim({Table.TextField2}) + "|" +
ToText({Table.NumField3}) + "|" +
etc.
Then display this as the only field in the report and export it into a text file.

MrBill
 
When you go to Export file, in drop down list you can select CSV.

This opens another dialog box where you can define delimiter and whether text is enclosed or not.

Ian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top