The problem I am having with CSV export is that Crystal does not have a way to place the trailer record of the export on its own line. The header record and detail records work fine, but the trailer record gets appended to the end of the last exported record, instead being on its own line at bottom of file. I found this article on Business Objects web site that talks about CSV export and header/detail records and this solution works.
Here is how data gets exported:
header record:
value1, value2, value3
detail record:
value1, value2, value3, value4 value5 ... valueN
trailer record:
it gets put at end of last record in detail section
detail values1 ... valuesN, trailer1 ... trailerN
Any feedback on this would be greatly appreciated...
Here is how data gets exported:
header record:
value1, value2, value3
detail record:
value1, value2, value3, value4 value5 ... valueN
trailer record:
it gets put at end of last record in detail section
detail values1 ... valuesN, trailer1 ... trailerN
Any feedback on this would be greatly appreciated...