Tab delimiters in AnyOutputFile

Hi,

Is there a way to create tab-delimited output files (e.g. using an ASCII code for the SepSign string?

Kind regards,

Bart Koning

Hi Bart,

Sorry about the slow reply, i am not sure if this is possible, please try something like this

SepSign =strformat("\x09");

or

SepSign= “\x09”

Best regards
Søren

Hi Søren,

I’ve just tested it and it works :-). Thank you very much!

Kind regards,

Bart Koning

Note:
As the SepSign is part of the file header it caused some problems when I opened the files with Excel. Now that I have blocked the constants section from the header (Header.ConstSectionOnOff = Off;), it works like a charm. The columns of the data are automatically put in separate Excel columns.