On Wed, Apr 13, 2016 at 8:28 PM, Sytze de Boer sytze.kiss@gmail.com wrote:
My client has asked me to export specified data to a CSV file That's the easy part. I have a CSV file with a header and 500 detail lines.
Now he has asked that Column 1, Row 1, (the header) MUST be called *contactname Column 7, Row 1, (some details) MUST be called *PAYDUEDATE ....and a few others
As you can see, this is more than 10 characters. I need some help here. Whats the easiest way to automate this?
It's pretty easy actually...
Get your data, build a string with it or send to file then FILETOSTR the stuff, create your header line, append the data string, write to CSV file with the name you want.