I am appending rows to a Google Spreadsheet as follows:
SpreadsheetService serv = new SpreadsheetService("com.blah");
//... initialisation
ListEntry row = new ListEntry();
row.getCustomElements().setValueLocal("date", "17/6/2015");
serv.insert(listFeedUrl, row);
The row appears in my spreadsheet but is formatted as follows:
Wed Jun 17 17:51:47 BST 2015
I've tried setting the column date format, but Google Sheets doesn't even
seem to recognise the string as a date.
I just want it to appear how I set it in code. How can I make the date text
appear as I want it to?
--
You received this message because you are subscribed to the Google Groups
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.