Is it possible to add a column with today’s date to my csv file ? (on every line)
Do you actually want to add it to the CSV file or do you simply want to extract today’s date in the DataMapper? In the latter case, all you have to do is add a new field of type Date to your data model and use the JavaScript expression new Date();
to extract it.
Phil
I want to add it to my csv file