Page 1 of 1
ASCII Output formatting question
Posted: Thu Jan 14, 2010 11:55 am
by MattDavis
hello all
I am trying to produce a text file in a TI process but I need to format the output _without_ text qualifying quotes, in a csv.
I have rtfm

but can't see how I can do this in the TI itself...
Is it possible or must I do something funky in VBA instead?
Matt
Re: ASCII Output formatting question
Posted: Thu Jan 14, 2010 1:08 pm
by Steve Rowe
Hi Matt,
Sometimes RTFM doesn't help since some of the information is missing!
If you look at TI Local Variables section you will see a bunch of variables that start DataSourceASCII.....
I'm 99% sure that these can be used to manage the format of ASCIIoutput too.
Cheers,
Re: ASCII Output formatting question
Posted: Thu Jan 14, 2010 1:39 pm
by MattDavis
Steve, you are a legend
I'd like to give you 1% to make you 100% certain. you are correct!
Thanks very much indeed
Matt
Re: ASCII Output formatting question
Posted: Thu Jan 14, 2010 2:32 pm
by Steve Rowe
That movie didn't end well, the book was even worse!

Re: ASCII Output formatting question
Posted: Thu Jan 14, 2010 7:20 pm
by kielmc
Where has this been all of my life? I'm getting nauseous thinking about how many times I've had to jump through hoops to get rid of those quotes!!
Re: ASCII Output formatting question
Posted: Tue Oct 23, 2012 4:50 am
by yyi
# take out double quotes
# use semi-colon instead of comma
DatasourceASCIIQuoteCharacter='';
DatasourceASCIIDelimiter=';';
Thanks for the posts everyone!