Hi all,
I'm having problems exporting V8.01 reports to Ascii format. I've tried exporting directly into a text file and i get extra lines added, i've gone thro word and saved as text and i get extra spaces at the end of the lines and extra linefeeds at the end of the file. I've tried paginated, RTF and other methods but closest that i've got is by exporting to Word, but as i've said it still gives me problems.
The file is going to be imported into a web app and the file structure is very rigid but i just cant seem to get it right.
The report basically has 3 formula's. 1 in header, 1 in detail, 1 in footer.
As an example here is the header formula.
I'm pulling my hair out with this one and would appreciate any advice.
Thanks,
Noel.
I'm having problems exporting V8.01 reports to Ascii format. I've tried exporting directly into a text file and i get extra lines added, i've gone thro word and saved as text and i get extra spaces at the end of the lines and extra linefeeds at the end of the file. I've tried paginated, RTF and other methods but closest that i've got is by exporting to Word, but as i've said it still gives me problems.
The file is going to be imported into a web app and the file structure is very rigid but i just cant seem to get it right.
The report basically has 3 formula's. 1 in header, 1 in detail, 1 in footer.
As an example here is the header formula.
Code:
'$FN:' & totext(count({HSBCnet.CreditAmount}),0,'') & chr(13) & chr(10)
& '$FT:' & totext(sum({HSBCnet.CreditAmount}),2,'') & chr(13) & chr(10)
& '$FC:GBP' & chr(013) & chr(10)
& '$DS' & chr(13) & chr(10)
& 'F01:1122334455' & chr(13) & chr(10)
& 'F02:' & totext({HSBCnet.ValueDate},0,'') & chr(13) & chr(10)
& 'F04:' & totext(COUNT({HSBCnet.CreditAmount}),0) & chr(13) & chr(10)
& 'F05:' & totext(SUM({HSBCnet.CreditAmount}),2,'')
Thanks,
Noel.